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