predicate aware uninitialized analysis
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / scoped6.C
blobb83b08fe94f97a0b1ef44b56f9e8aa66680a0d8e
1 template <typename X>
2 class Foo {
3   int i;
4 public:
5   Foo() {
6     X::explode(); // { dg-error "" }
7   }
8 };
10 class Bar {
11   Foo<int> foo_;
12 public:
13   Bar() {}  // { dg-message "instantiated" }
16 template class Foo<int>;