summaryrefslogtreecommitdiffstats
path: root/test/SemaObjC/class-property-access.m
blob: 663b87d2ff1890f99afd2a687b5a6fddb175d7dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: clang -fsyntax-only -verify %s

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

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

OpenPOWER on IntegriCloud