blob: 57e5ad731516596664b836aa4ecbb8394d64bc26 [file] [log] [blame]
Anders Carlsson293361a2009-08-25 13:14:46 +00001// RUN: clang-cc %s -emit-llvm -o %t &&
2struct S {
3 operator int();
4};
5
6// RUN: grep "_ZN1ScviEv" %t
7S::operator int() {
8 return 10;
9}