forked from OSchip/llvm-project
12 lines
144 B
C++
12 lines
144 B
C++
|
// RUN: clang-cc -fsyntax-only -verify %s
|
||
|
struct B { B(void* = 0); };
|
||
|
|
||
|
struct A {
|
||
|
A(B b = B()) { }
|
||
|
};
|
||
|
|
||
|
void f() {
|
||
|
(void)B();
|
||
|
(void)A();
|
||
|
}
|