cling/test/Prompt/Redeclarations.C

12 lines
415 B
C++
Raw Normal View History

// RUN: cat %s | %cling -Xclang -verify
class MyClass{};
class MyClass{} // expected-error {{redefinition of 'MyClass'}} expected-note {{previous definition is here}}
MyClass s;
MyClass s; // expected-error {{redefinition of 's'}} expected-note {{previous definition is here}}
const char* a = "test";
const char* a = ""; // expected-error {{redefinition of 'a'}} expected-note {{previous definition is here}}
.q