brintos

brintos / llvm-project-archived public Read only

0
0
Text · 230 B · 5a08cd8 Raw
13 lines · plain
1// RUN: %clang_cc1 -fsyntax-only -verify %s2 3@import Foundation; // expected-error {{use of '@import' when modules are disabled}}4 5@interface Subclass 6+ (int)magicNumber;7@end8 9int main (void) {10  return Subclass.magicNumber;11}12 13