blob: e6b1273acafb83ff8dafebe44e545ed6458618fe [file] [log] [blame]
Douglas Gregorcc889662012-05-08 00:14:45 +00001// Run lines below; this test is line- and column-sensitive.
2
3void foo(void) __attribute__((availability(macosx,introduced=10.4,deprecated=10.5,obsoleted=10.7), availability(ios,introduced=3.2,deprecated=4.1)));
4
Douglas Gregor70322652012-05-08 00:29:04 +00005// RUN: c-index-test -test-load-source all %s > %t
6// RUN: FileCheck -check-prefix=CHECK-1 %s < %t
7// RUN: FileCheck -check-prefix=CHECK-2 %s < %t
8// CHECK-1: (ios, introduced=3.2, deprecated=4.1)
9// CHECK-2: (macosx, introduced=10.4, deprecated=10.5, obsoleted=10.7)
10