aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenCXX/conversion-function.cpp
blob: 57e5ad731516596664b836aa4ecbb8394d64bc26 (plain)
1
2
3
4
5
6
7
8
9
// RUN: clang-cc %s -emit-llvm -o %t &&
struct S {
	operator int();
};

// RUN: grep "_ZN1ScviEv" %t
S::operator int() {
	return 10;
}