blob: 3bc931e984487bd72def14cffba500935a655102 [file] [log] [blame]
Stephen Hines651f13c2014-04-23 16:59:28 -07001// FIXME: Check IR rather than asm, then triple is not needed.
2// RUN: %clang -Xclang -triple=%itanium_abi_triple -fverbose-asm -g -S %s -o - | grep AT_explicit
Devang Patel18e06c02010-10-01 23:32:17 +00003
4
5class MyClass
6{
7public:
8 explicit MyClass (int i) :
9 m_i (i)
10 {}
11private:
12 int m_i;
13};
14
15MyClass m(1);
16