repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
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
}