blob: 75167050dca2101922f711290902a6550e208cb9 [file] [log] [blame]
Nico Weber11d1a692012-05-20 01:27:21 +00001// RUN: %clang_cc1 -fsyntax-only -verify -fno-rtti %s
2
3namespace std {
4 class type_info;
5}
6
7void f()
8{
9 (void)typeid(int); // expected-error {{cannot use typeid with -fno-rtti}}
10}