1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // expected-no-diagnostics
9 @interface NSSound (Adds)
12 @implementation NSSound (Adds)
20 @implementation NSFont (Adds)
26 // GCC does *not* warn about the following. Since foo/setFoo: are not in the
27 // class or category interface for NSSound, the compiler shouldn't find them.
28 // For now, we will support GCC's behavior (sigh).