repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
predicate aware uninitialized analysis
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
lookup
/
scoped6.C
blob
b83b08fe94f97a0b1ef44b56f9e8aa66680a0d8e
1
template <typename X>
2
class Foo {
3
int i;
4
public:
5
Foo() {
6
X::explode(); // { dg-error "" }
7
}
8
};
9
10
class Bar {
11
Foo<int> foo_;
12
public:
13
Bar() {} // { dg-message "instantiated" }
14
};
15
16
template class Foo<int>;
17