Home | History | Annotate | Download | only in CodeGenObjC
      1 // RUN: %clang_cc1 -emit-llvm  -g %s -o - | FileCheck %s
      2 // Radar 8494540
      3 
      4 // CHECK: objc_selector
      5 @interface MyClass {
      6 }
      7 - (id)init;
      8 @end
      9 
     10 @implementation MyClass
     11 - (id) init
     12 {
     13   return self;
     14 }
     15 @end
     16