diff options
Diffstat (limited to 'clang/test/SemaObjC/property-nonfragile-abi.m')
-rw-r--r-- | clang/test/SemaObjC/property-nonfragile-abi.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/SemaObjC/property-nonfragile-abi.m b/clang/test/SemaObjC/property-nonfragile-abi.m index 4a211bd2401..28ad942b59c 100644 --- a/clang/test/SemaObjC/property-nonfragile-abi.m +++ b/clang/test/SemaObjC/property-nonfragile-abi.m @@ -16,7 +16,7 @@ typedef signed char BOOL; @end @implementation XCDeviceWillExecuteInfoBaton - // No error is produced with compiling for -arch x86_64 (or "non-fragile" ABI) - @synthesize sdkPath; + // Produce an error when compiling for -arch x86_64 (or "non-fragile" ABI) + @synthesize sdkPath; // expected-error{{instance variable synthesis not yet supported (need to declare 'sdkPath' explicitly)}} @end |