blob: f96fb4c2e4a5de5b35cc0616009a1ede4ecde43a (
plain)
1
2
3
4
5
6
7
|
// RUN: clang %s -verify -fsyntax-only
@class NSString;
// GCC considers this an error, so clang will...
NSString *s = @"123"; // expected-error: {{cannot find interface declaration for 'NSConstantString'}}
|