summaryrefslogtreecommitdiff
path: root/test/SemaObjC/class-property-access.m
blob: 735b51a3c432908d1a148077d4d2cfaa6f66e3cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics

@interface Test {}
+ (Test*)one;
- (int)two;
@end

int main ()
{
  return Test.one.two;
}