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
* cfgloopmanip.c (duplicate_loop_to_header_edge): Cleanup profile
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.jason
/
dtor.C
blob
2dc5f8cd611a16eb40a3e279146846f403b07deb
1
// { dg-do assemble }
2
struct A {
3
~A();
4
};
5
6
struct B {
7
~B();
8
};
9
10
int main()
11
{
12
A a;
13
a.~B(); // { dg-error "" } wrong name
14
}