mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-13 19:24:21 +00:00
4e9ea71dab
where the test didn't work. llvm-svn: 142563
128 lines
3.8 KiB
C++
128 lines
3.8 KiB
C++
// RUN: %clang_cc1 -pedantic -Wall -verify -fcxx-exceptions -x c++ %s
|
|
// RUN: cp %s %t
|
|
// RUN: not %clang_cc1 -pedantic -Wall -fcxx-exceptions -fixit -x c++ %t
|
|
// RUN: %clang_cc1 -fsyntax-only -pedantic -Wall -Werror -fcxx-exceptions -x c++ %t
|
|
|
|
/* This is a test of the various code modification hints that are
|
|
provided as part of warning or extension diagnostics. All of the
|
|
warnings will be fixed by -fixit, and the resulting file should
|
|
compile cleanly with -Werror -pedantic. */
|
|
|
|
struct C1 {
|
|
virtual void f();
|
|
static void g();
|
|
};
|
|
struct C2 : virtual public virtual C1 { }; // expected-error{{duplicate}}
|
|
|
|
virtual void C1::f() { } // expected-error{{'virtual' can only be specified inside the class definition}}
|
|
|
|
static void C1::g() { } // expected-error{{'static' can only be specified inside the class definition}}
|
|
|
|
template<int Value> struct CT { }; // expected-note{{previous use is here}}
|
|
|
|
CT<10 >> 2> ct; // expected-warning{{require parentheses}}
|
|
|
|
class C3 {
|
|
public:
|
|
C3(C3, int i = 0); // expected-error{{copy constructor must pass its first argument by reference}}
|
|
};
|
|
|
|
struct CT<0> { }; // expected-error{{'template<>'}}
|
|
|
|
template<> union CT<1> { }; // expected-error{{tag type}}
|
|
|
|
// Access declarations
|
|
class A {
|
|
protected:
|
|
int foo();
|
|
};
|
|
|
|
class B : public A {
|
|
A::foo; // expected-warning{{access declarations are deprecated}}
|
|
};
|
|
|
|
void f() throw(); // expected-note{{previous}}
|
|
void f(); // expected-warning{{missing exception specification}}
|
|
|
|
namespace rdar7853795 {
|
|
struct A {
|
|
bool getNumComponents() const; // expected-note{{declared here}}
|
|
void dump() const {
|
|
getNumComponenets(); // expected-error{{use of undeclared identifier 'getNumComponenets'; did you mean 'getNumComponents'?}}
|
|
}
|
|
};
|
|
}
|
|
|
|
namespace rdar7796492 {
|
|
class A { int x, y; A(); };
|
|
|
|
A::A()
|
|
: x(1) y(2) { // expected-error{{missing ',' between base or member initializers}}
|
|
}
|
|
|
|
}
|
|
|
|
// extra qualification on member
|
|
class C {
|
|
int C::foo(); // expected-warning {{extra qualification}}
|
|
};
|
|
|
|
namespace rdar8488464 {
|
|
int x == 0; // expected-error {{invalid '==' at end of declaration; did you mean '='?}}
|
|
|
|
void f() {
|
|
int x == 0; // expected-error {{invalid '==' at end of declaration; did you mean '='?}}
|
|
(void)x;
|
|
if (int x == 0) { // expected-error {{invalid '==' at end of declaration; did you mean '='?}}
|
|
(void)x;
|
|
}
|
|
}
|
|
}
|
|
|
|
template <class A>
|
|
class F1 {
|
|
public:
|
|
template <int B>
|
|
class Iterator {
|
|
};
|
|
};
|
|
|
|
template<class T>
|
|
class F2 {
|
|
typename F1<T>:: /*template*/ Iterator<0> Mypos; // expected-error {{use 'template' keyword to treat 'Iterator' as a dependent template name}}
|
|
};
|
|
|
|
template <class T>
|
|
void f(){
|
|
typename F1<T>:: /*template*/ Iterator<0> Mypos; // expected-error {{use 'template' keyword to treat 'Iterator' as a dependent template name}}
|
|
}
|
|
|
|
// Tests for &/* fixits radar 7113438.
|
|
class AD {};
|
|
class BD: public AD {};
|
|
|
|
void test (BD &br) {
|
|
AD* aPtr;
|
|
BD b;
|
|
aPtr = b; // expected-error {{assigning to 'AD *' from incompatible type 'BD'; take the address with &}}
|
|
aPtr = br; // expected-error {{assigning to 'AD *' from incompatible type 'BD'; take the address with &}}
|
|
}
|
|
|
|
void foo1() const {} // expected-error {{type qualifier is not allowed on this function}}
|
|
void foo2() volatile {} // expected-error {{type qualifier is not allowed on this function}}
|
|
void foo3() const volatile {} // expected-error {{type qualifier is not allowed on this function}}
|
|
|
|
struct S { void f(int, char); };
|
|
int itsAComma,
|
|
itsAComma2 = 0,
|
|
oopsAComma(42), // expected-error {{expected ';' at end of declaration}}
|
|
AD oopsMoreCommas() {
|
|
static int n = 0, // expected-error {{expected ';' at end of declaration}}
|
|
static char c,
|
|
&d = c, // expected-error {{expected ';' at end of declaration}}
|
|
S s, // expected-error {{expected ';' at end of declaration}}
|
|
s.f(n, d);
|
|
AD ad, // expected-error {{expected ';' at end of declaration}}
|
|
return ad;
|
|
}
|