aboutsummaryrefslogtreecommitdiff
path: root/test/Import/forward-declared-objc-class/Inputs/S2.m
blob: 69d067a3bdbb40eb4c295101d268f2e0c80aa1fe (plain) (blame)
1
2
3
4
5
6
@interface MyClass {
  int j;
};
+(MyClass*)fromInteger:(int)_j;
-(int)getInteger;
@end