mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-12 01:18:53 +00:00
8fbe78f6fc
- This is designed to make it obvious that %clang_cc1 is a "test variable" which is substituted. It is '%clang_cc1' instead of '%clang -cc1' because it can be useful to redefine what gets run as 'clang -cc1' (for example, to set a default target). llvm-svn: 91446
53 lines
508 B
C++
53 lines
508 B
C++
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
class C { };
|
|
|
|
C c;
|
|
|
|
void D(int);
|
|
|
|
class D {};
|
|
|
|
void foo()
|
|
{
|
|
D(5);
|
|
class D d;
|
|
}
|
|
|
|
class D; // expected-note {{previous use is here}}
|
|
|
|
enum D; // expected-error {{use of 'D' with tag type that does not match previous declaration}}
|
|
|
|
class A * A;
|
|
|
|
class A * a2;
|
|
|
|
void bar()
|
|
{
|
|
A = 0;
|
|
}
|
|
|
|
void C(int);
|
|
|
|
void bar2()
|
|
{
|
|
C(17);
|
|
}
|
|
|
|
extern int B;
|
|
class B;
|
|
class B {};
|
|
int B;
|
|
|
|
enum E { e1_val };
|
|
E e1;
|
|
|
|
void E(int);
|
|
|
|
void bar3() {
|
|
E(17);
|
|
}
|
|
|
|
enum E e2;
|
|
|
|
enum E2 { E2 };
|