1 // RUN: %clang_cc1 -emit-llvm %s -o - -std=c++11 -triple %itanium_abi_triple | FileCheck %s
3 extern "C" int printf(...);
6 S() { printf("S::S\n"); }
11 A() : x(), y(), s() { printf("x = %f y = %x \n", x
, y
); }
40 // CHECK-NOT: _ZN7PR227933fooIiED2Ev
45 void func() { foo
<int> f
; }
47 template struct foo
<int>;