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
Daily bump.
[official-gcc.git]
/
libphobos
/
testsuite
/
libphobos.exceptions
/
invalid_memory_operation.d
blob
79660e97f2b9b97617549f9ad8a260729e6dfe18
1
// { dg-shouldfail "Invalid memory operation" }
2
// { dg-output "core.exception.InvalidMemoryOperationError@.*: Invalid memory operation" }
3
struct
S
4
{
5
~
this
()
6
{
7
new int
;
8
}
9
}
10
11
void
main
()
12
{
13
new
S
;
14
}