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
* testsuite/libgomp.fortran/vla7.f90: Add -w to options.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.benjamin
/
p13417.C
blob
132b13df277d8988dcd5647ace60a797f76dc156
1
// { dg-do assemble }
2
// { dg-options "-Wno-deprecated" }
3
// prms-id: 13417
4
5
class Foo {
6
public:
7
explicit Foo (int){}
8
};
9
Foo f(10);
10
Foo blat() return f(4){} // { dg-error "" } named return value
11