19 lines
684 B
C
19 lines
684 B
C
//------------------------------------------------------------------------------
|
|
// CLING - the C++ LLVM-based InterpreterG :)
|
|
//
|
|
// This file is dual-licensed: you can choose to license it under the University
|
|
// of Illinois Open Source License or the GNU Lesser General Public License. See
|
|
// LICENSE.TXT for details.
|
|
//------------------------------------------------------------------------------
|
|
|
|
// RUN: cat %s | %cling -I %S -Xclang -verify
|
|
// Test incompleteType
|
|
|
|
.rawInput 1
|
|
class __attribute__((annotate("Def.h"))) C;
|
|
//expected-note + {{}}
|
|
.rawInput 0
|
|
|
|
C c; //expected-error {{variable has incomplete type 'C'}} expected-warning@1 0+ {{Note: 'C' can be found in Def.h}}
|
|
.q
|