brintos

brintos / llvm-project-archived public Read only

0
0
Text · 443 B · ad025bf Raw
10 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -verify -fcxx-exceptions -std=c++11 %s2 3struct ExplicitlySpecialMethod {4  ExplicitlySpecialMethod() = default;5};6ExplicitlySpecialMethod::ExplicitlySpecialMethod() {} // expected-error{{definition of explicitly defaulted default constructor}}7 8struct ImplicitlySpecialMethod {};9ImplicitlySpecialMethod::ImplicitlySpecialMethod() {} // expected-error{{definition of implicitly declared default constructor}}10