repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
defarg4.C
blob
293538adbd15b5fe069d9c89f3f3eafb1409ca57
1
// PR c++/14763
2
3
struct A {
4
int get() const {}
5
static A *foo();
6
};
7
8
template<bool> struct S {
9
S(unsigned int = A::foo()->get()) ;
10
};
11
12
void foo() throw() {
13
S<false> f;
14
}