]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/SemaObjC/no-warning-unavail-unimp.m
Vendor import of clang trunk r135360:
[FreeBSD/FreeBSD.git] / test / SemaObjC / no-warning-unavail-unimp.m
1 // RUN: %clang_cc1  -fsyntax-only -verify %s
2 // rdar://9651605
3
4 @interface Foo
5 @property (getter=getVal) int val __attribute__((unavailable));
6 - Method __attribute__((unavailable));
7 + CMethod __attribute__((unavailable));
8 @end
9
10 @implementation Foo
11 @end
12