17 lines · cpp
1// FIXME: Check IR rather than asm, then triple is not needed.2// RUN: %clang --target=%itanium_abi_triple -fverbose-asm -g -S %s -o - | grep AT_explicit3 4 5class MyClass6{7public:8 explicit MyClass (int i) : 9 m_i (i)10 {}11private:12 int m_i;13};14 15MyClass m(1);16 17