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
/
conversion
/
const2.C
blob
fd2be1f44448d1098ee9d89de8b7ab61794d22ab
1
struct B {};
2
struct D : public B {};
3
4
typedef int B::*bm;
5
typedef int D::*dm;
6
7
bm bp;
8
9
void f() {
10
const_cast<dm>(bp); // { dg-error "" }
11
}