blob: 5caaca9010b3e41b94331fc31333c9e193fb0ec1 [file] [log] [blame]
Anders Carlssona40c5e42009-03-07 22:03:21 +00001// RUN: clang -emit-llvm %s -o %t &&
2
3@class C;
4
5// RUN: grep _Z1fP11objc_object %t | count 1 &&
6void __attribute__((overloadable)) f(C *c) { }
7
8// RUN: grep _Z1fP1C | count 1
9void __attribute__((overloadable)) f(id c) { }