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
i386: Zero extend 32-bit address to 64-bit with option -mx32 -maddress-mode=long...
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
ext
/
is_constructible3.C
blob
c7c58746cd0a5b2d790cf13cbf0ae40b08b55908
1
// PR c++/88368
2
// { dg-do compile { target c++11 } }
3
4
struct A {
5
6
struct B {
7
int I = 1;
8
B() = default;
9
};
10
11
static constexpr bool v = __is_constructible (B);
12
13
};
14
15
void print() {
16
A::B BB;
17
}