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
* MAINTAINERS: Add a note that maintainership also includes web
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
parse
/
extern1.C
blob
cc95fa6946813a28eb7f1f06fe07856ce9762549
1
// PR c++/21495
2
// { dg-do compile }
3
4
class A
5
{
6
extern void *copy (void) // { dg-error "storage class specified" }
7
{
8
return 0;
9
}
10
extern A &operator= (const A &) // { dg-error "storage class specified" }
11
{
12
return *this;
13
}
14
};