blob: f96fb4c2e4a5de5b35cc0616009a1ede4ecde43a [file] [log] [blame]
Steve Naroffa44b4d92007-10-19 00:05:15 +00001// RUN: clang %s -verify -fsyntax-only
2
3@class NSString;
4
5// GCC considers this an error, so clang will...
6NSString *s = @"123"; // expected-error: {{cannot find interface declaration for 'NSConstantString'}}
7