blob: 65bfa22ac6219f13d6bf74eca0e085dc35cb74de [file] [log] [blame]
Stephen Hines651f13c2014-04-23 16:59:28 -07001// RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm-only %s -verify
2
3// rdar://15522601
4class MyClass {
5 static void meth();
6};
7void MyClass::meth() { }
8extern "C" {
9 void _ZN7MyClass4methEv() { } // expected-error {{definition with same mangled name as another definition}}
10}