blob: 75167050dca2101922f711290902a6550e208cb9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// RUN: %clang_cc1 -fsyntax-only -verify -fno-rtti %s
namespace std {
class type_info;
}
void f()
{
(void)typeid(int); // expected-error {{cannot use typeid with -fno-rtti}}
}
|