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
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
tc1
/
dr194.C
blob
3ed130071eb8902e43fc3df54f1496493d87267c
1
// { dg-do compile }
2
// Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
3
// DR194: Identifying constructors
4
5
struct A
6
{
7
inline explicit A();
8
};
9
10
template <class>
11
struct B
12
{
13
inline explicit B();
14
};
15
16
template struct B<void>;