blob: f9ad7592187c0d8af21d8fc3ce0d0c69324c5cc1 [file] [log] [blame]
// RUN: clang-cc -fsyntax-only -verify %s
void f()
{
(void)typeid(int); // expected-error {{error: you need to include <typeinfo> before using the 'typeid' operator}}
}
// FIXME: This should really include <typeinfo>, but we don't have that yet.
namespace std {
class type_info;
}
void g()
{
(void)typeid(int);
}