f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
20 lines
824 B
C
20 lines
824 B
C
// Run lines below; this test is line- and column-sensitive.
|
|
|
|
void foo(void) __attribute__((availability(macosx,introduced=10.4,deprecated=10.5,obsoleted=10.7), availability(ios,introduced=3.2,deprecated=4.1)));
|
|
|
|
enum {
|
|
old_enum
|
|
} __attribute__((deprecated));
|
|
|
|
enum {
|
|
old_enum_plat
|
|
} __attribute__((availability(macosx,introduced=10.4,deprecated=10.5,obsoleted=10.7)
|
|
|
|
// RUN: c-index-test -test-load-source all %s > %t
|
|
// RUN: FileCheck -check-prefix=CHECK-1 %s < %t
|
|
// RUN: FileCheck -check-prefix=CHECK-2 %s < %t
|
|
// CHECK-1: (ios, introduced=3.2, deprecated=4.1)
|
|
// CHECK-2: (macosx, introduced=10.4, deprecated=10.5, obsoleted=10.7)
|
|
|
|
// CHECK-2: EnumConstantDecl=old_enum:6:3 (Definition) (deprecated)
|
|
// CHECK-2: EnumConstantDecl=old_enum_plat:10:3 {{.*}} (macosx, introduced=10.4, deprecated=10.5, obsoleted=10.7)
|