llvm-project
13 строк · 281.0 Байт
1// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3// FIXME: This should really include <typeinfo>, but we don't have that yet.
4namespace std {
5class type_info;
6}
7
8void f()
9{
10(void)typeid(int);
11(void)typeid(0);
12(void)typeid 1; // expected-error {{expected '(' after 'typeid'}}
13}
14