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
c++: lvalue_kind tweak
[official-gcc.git]
/
libphobos
/
testsuite
/
libphobos.exceptions
/
line_trace.d
blob
70762ff227c597aeec8265399cbff8b4cb6d1ed3
1
// { dg-output "object.Exception@.*: exception" }
2
void
main
()
3
{
4
try
5
{
6
f1
();
7
}
8
catch
(
Exception e
)
9
{
10
import
core
.
stdc
.
stdio
;
11
auto
str
=
e
.
toString
();
12
printf
(
"%.*s
\n
"
,
cast
(
int
)
str
.
length
,
str
.
ptr
);
13
}
14
}
15
16
void
f1
()
17
{
18
throw new
Exception
(
"exception"
);
19
}