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++/85765 - SFINAE and non-type default template arg.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
defaulted28.C
blob
0e04dbfb8d7722032df0538dac5f05eb4b7319ac
1
// PR c++/49102
2
// PR c++/50034
3
// { dg-do compile { target c++11 } }
4
5
struct A {
6
A() = default;
7
8
private:
9
A(A const&) = default; // { dg-message "private" }
10
};
11
12
int f(...) { return 0; }
13
int main() {
14
A a;
15
f(a); // { dg-error "this context" }
16
sizeof(f(a)); // OK because unevaluated
17
}