aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Sema/objc-unused.m
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/Sema/objc-unused.m')
-rw-r--r--clang/test/Sema/objc-unused.m18
1 files changed, 0 insertions, 18 deletions
diff --git a/clang/test/Sema/objc-unused.m b/clang/test/Sema/objc-unused.m
deleted file mode 100644
index cbe15a1..0000000
--- a/clang/test/Sema/objc-unused.m
+++ /dev/null
@@ -1,18 +0,0 @@
-// RUN: clang %s -verify -fsyntax-only
-#include <stdio.h>
-
-@interface Greeter
-+ (void) hello;
-@end
-
-@implementation Greeter
-+ (void) hello {
- fprintf(stdout, "Hello, World!\n");
-}
-@end
-
-int main (void) {
- [Greeter hello];
- return 0;
-}
-