mangle-subst-std.cpp revision e7c8cb6b2728aa98258288d221b09bc66cc05543
1// RUN: clang-cc -emit-llvm %s -o - -triple=x86_64-apple-darwin9 | FileCheck %s
2
3namespace std {
4  struct A { A(); };
5
6  // CHECK: define void @_ZNSt1AC1Ev
7  // CHECK: define void @_ZNSt1AC2Ev
8  A::A() { }
9};
10