llvm-project/clang/test/CodeGenCXX/cxx0x-defaulted-templates.cpp
Richard Smith 9ca5c42582 Update all tests other than Driver/std.cpp to use -std=c++11 rather than
-std=c++0x. Patch by Ahmed Charles!

llvm-svn: 141900
2011-10-13 22:29:44 +00:00

20 lines
495 B
C++

// RUN: %clang_cc1 -std=c++11 -emit-llvm -o - %s | FileCheck %s
template <typename T>
struct X {
X();
};
// CHECK: define {{.*}} @_ZN1XIbEC1Ev
// CHECK: define {{.*}} @_ZN1XIbEC2Ev
template <> X<bool>::X() = default;
// CHECK: define weak_odr {{.*}} @_ZN1XIiEC1Ev
// CHECK: define weak_odr {{.*}} @_ZN1XIiEC2Ev
template <typename T> X<T>::X() = default;
template X<int>::X();
// CHECK: define linkonce_odr {{.*}} @_ZN1XIcEC1Ev
// CHECK: define linkonce_odr {{.*}} @_ZN1XIcEC2Ev
X<char> x;