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
PR c++/86728 - C variadic generic lambda.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
constexpr-ice15.C
blob
576fd41508508dccba59a517476e6da968671ad4
1
// PR c++/58207
2
// { dg-do compile { target c++11 } }
3
4
struct A
5
{
6
virtual bool foo ();
7
};
8
9
struct B : public A
10
{
11
constexpr B () : A (&::n) {} // { dg-error "declared" }
12
};