blob: a5ba3ab7d08d0850ea87bfced97fedae023f8dd5 [file] [log] [blame]
Anders Carlssone7c8cb62009-09-26 20:53:44 +00001// 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};