Skip to content

Commit a0dbd9e

Browse files
committed
revert required tests
1 parent dbb2c1d commit a0dbd9e

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

clang/test/CodeGenCXX/default-arguments.cpp

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,20 @@ void test() {
2323
}
2424
};
2525

26+
struct A1 {
27+
A1();
28+
~A1();
29+
};
30+
31+
struct A2 {
32+
A2();
33+
~A2();
34+
};
35+
36+
struct B {
37+
B(const A1& = A1(), const A2& = A2());
38+
};
39+
2640
// CHECK-LABEL: define{{.*}} void @_Z2f1v()
2741
void f1() {
2842

0 commit comments

Comments
 (0)