repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
inh-ctor10.C
blob
48e95a0b1b67d0f775c8f8be3edbc3314ab61b4f
1
// { dg-do compile { target c++11 } }
2
// { dg-options "-g" }
3
4
struct A
5
{
6
template <class... Ts> A(Ts...);
7
};
8
9
struct B: A
10
{
11
using A::A;
12
};
13
14
B b1(42);
15
B b2(1.0, 42, (void*)0);