1 // rdar://6657613
2 // RUN: %clang_cc1 -emit-llvm %s -o %t
3
4 @class C;
5
6 // RUN: grep _Z1fP11objc_object %t | count 1
7 void __attribute__((overloadable)) f(id c) { }
8
9 // RUN: grep _Z1fP1C %t | count 1
10 void __attribute__((overloadable)) f(C *c) { }
11