aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/lang/objc/class-without-methods/Point.m
blob: 770a857c80dc7f336299dc7f8e750b61c3b089b2 (plain)
1
2
3
4
5
6
7
#import "Point.h"

@implementation Point {
  float _x;
  float _y;
}
@end