forked from OSchip/llvm-project
parent
18a96bb07f
commit
829574edab
|
@ -0,0 +1,11 @@
|
|||
class X {
|
||||
public:
|
||||
typedef int I;
|
||||
class Y { };
|
||||
I a;
|
||||
};
|
||||
|
||||
I b; // expected-error{{unknown type name 'I'}}
|
||||
Y c; // expected-error{{unknown type name 'Y'}}
|
||||
X::Y d;
|
||||
X::I e;
|
Loading…
Reference in New Issue