mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-15 17:10:34 -04:00
10 lines
173 B
C++
10 lines
173 B
C++
// RUN: %clang_cc1 %s -fsyntax-only -verify -fms-compatibility
|
|
// expected-no-diagnostics
|
|
|
|
// PR13153
|
|
namespace std {}
|
|
class type_info {};
|
|
void f() {
|
|
(void)typeid(int);
|
|
}
|