repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
parse
/
pure1.C
blob
2b6f28b7df5111c44495e87b3c79fc4c817291b6
1
// PR c++/28506
2
3
struct A
4
{
5
virtual void* foo() = 1; // { dg-error "pure" }
6
};
7
8
struct B
9
{
10
void operator()()() = 1; // { dg-error "pure|function|initializer" }
11
};