1 // RUN: %clang_cc1 -std=c++1z -verify %s
8 using A::m
, A::n
, A::n
;
13 int x1
, x2
, y
, z
; // expected-note 2{{conflicting}}
16 int x1
, x2
, y
, z
; // expected-note 2{{target}}
20 blah::blah
, // expected-error {{undeclared}}
21 X::x2
, // expected-note {{previous}}
23 X::x2
, // expected-error {{redeclaration}}
25 Y::z
; // expected-error {{conflicts with}}
32 template<typename
...T
> struct Q
: T
... {
33 using T::z
...; // expected-error {{conflicts}}
35 Q
<X
,Y
> q
; // expected-note {{instantiation of}}