1 // { dg-do compile { target c++11 } }
2 int
foo()3 foo ()
4 {
5   int i [[and::bitor, bar::xor_eq, compl::baz(1), bitand::xor_eq(2, 3)]]; // { dg-warning "ignored" }
6   int j [[using, using::baz, bar::using, using::using (2)]];		  // { dg-warning "ignored" }
7   i = 0;
8   j = 0;
9   return i + j;
10 }
11