brintos

brintos / llvm-project-archived public Read only

0
0
Text · 367 B · e42d753 Raw
7 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -verify %s2 3struct Incomplete;                 // expected-note 2{{forward declaration of 'Incomplete'}}4Incomplete f(Incomplete) = delete; // well-formed5Incomplete g(Incomplete) {}        // expected-error{{incomplete result type 'Incomplete' in function definition}}\6// expected-error{{variable has incomplete type 'Incomplete'}}7