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
Update concepts branch to revision 131834
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
parse
/
lookup3.C
blob
d4bf79830304ec32cea18cf16402fd74a43f6255
1
struct X {};
2
3
template <int>
4
struct Base {
5
static void foo () {
6
X::NONEXISTENT (); // { dg-error "" }
7
}
8
};
9
10
int main () {
11
Base<2>::foo ();
12
}