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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
g++.dg
/
overload
/
operator2.C
blob
aba1622442c62f87fd5d3f368af39420ce1fd04f
1
// PR c++/19966
2
// { dg-do compile }
3
4
struct A
5
{
6
static operator int(); // { dg-error "must be a nonstatic" }
7
};
8
9
struct B
10
{
11
static int operator*(); // { dg-error "must be either" }
12
};
13
14
static operator int(); // { dg-error "must be a nonstatic" }