blob: 7307a47f8282c1595a303816d6f8108b44041662 [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -verify %s
class X {};
void test() {
X x;
x.int; // expected-error{{expected unqualified-id}}
x.~int(); // expected-error{{expected a class name}}
x.operator; // expected-error{{missing type specifier after 'operator'}}
x.operator typedef; // expected-error{{missing type specifier after 'operator'}}
}
void test2() {
X *x;
x->int; // expected-error{{expected unqualified-id}}
x->~int(); // expected-error{{expected a class name}}
x->operator; // expected-error{{missing type specifier after 'operator'}}
x->operator typedef; // expected-error{{missing type specifier after 'operator'}}
}
// PR6327
namespace test3 {
template <class A, class B> struct pair {};
void test0() {
pair<int, int> z = minmax({}); // expected-error {{expected expression}}
}
struct string {
class iterator {};
};
void test1() {
string s;
string::iterator i = s.foo(); // expected-error {{no member named 'foo'}}
}
}