freebsd-dev/test/SemaObjC/property-ivar-mismatch.m
2010-01-01 10:34:51 +00:00

15 lines
315 B
Objective-C

// RUN: %clang_cc1 -fsyntax-only -verify %s
// Test that arithmatic types on property and its ivar have exact match.
@interface Test4
{
char ivar;
}
@property int prop;
@end
@implementation Test4
@synthesize prop = ivar; // expected-error {{type of property 'prop' does not match type of ivar 'ivar'}}
@end