summaryrefslogtreecommitdiffstats
path: root/test/Rewriter/rewrite-qualified-id.mm
blob: f54bae9c371828d230d89046a5ef3e8a7e6a8a1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// RUN: %clang_cc1 -x objective-c++ -Wno-return-type -fblocks -fms-extensions -rewrite-objc -fobjc-fragile-abi %s -o %t-rw.cpp
// RUN: %clang_cc1 -fsyntax-only -Wno-address-of-temporary -D"SEL=void*" -D"__declspec(X)=" %t-rw.cpp
// radar 7680953

typedef void * id;

@protocol foo
@end

@interface CL
{
  id <foo> changeSource;
  CL <foo>* changeSource1;
}
@end

typedef struct x
{
   id <foo> changeSource;
} x;