opnsense-src/test/CodeGenCXX/default-constructor-default-argument.cpp

9 lines
214 B
C++
Raw Normal View History

2010-01-01 05:34:51 -05:00
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
2009-11-18 09:59:57 -05:00
// Check that call to constructor for struct A is generated correctly.
struct A { A(int x = 2); };
struct B : public A {};
B x;
2010-01-15 10:39:40 -05:00
// CHECK: call void @_ZN1AC2Ei