Home | History | Annotate | Download | only in SemaCXX

Lines Matching defs:CONST

7 B::B(const B&) { } // expected-error {{definition of implicitly declared copy constructor}}
10 C& C::operator=(const C&) { return *this; } // expected-error {{definition of implicitly declared copy assignment operator}}
25 B(const A& a) {
26 operator = (CONST);
30 B& operator = (const A& a) {
34 void f(const A &a) {
38 static const B CONST;
56 static const T &get();
66 A(const T &);
91 typename = decltype(T(declval<const V&>())),
92 typename = decltype(U(declval<const W&>()))>
93 pair(const pair<V,W> &);
99 Vector(const Line<K> &l);