blob: a825dc3cc7a56d2fbbf9273029c60a3b64970bc4 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Sebastian Redlc42e1182008-11-11 11:37:55 +00002
3// FIXME: This should really include <typeinfo>, but we don't have that yet.
4namespace std {
5 class type_info;
6}
7
8void f()
9{
10 (void)typeid(int);
11 (void)typeid(0);
12 (void)typeid 1; // expected-error {{error: expected '(' after 'typeid'}}
13}