mirror of
https://github.com/dlang/dmd.git
synced 2025-04-27 05:30:13 +03:00
Move dmd files into compiler/
This commit is contained in:
parent
20bd0cacbd
commit
6374bb87b7
4579 changed files with 4 additions and 4 deletions
18
compiler/test/compilable/exception.d
Normal file
18
compiler/test/compilable/exception.d
Normal file
|
@ -0,0 +1,18 @@
|
|||
class E2 : Exception { this() { super(null); } }
|
||||
class E3 : Exception { this() { super(null); } }
|
||||
|
||||
void main()
|
||||
{
|
||||
try
|
||||
{
|
||||
}
|
||||
catch (E3)
|
||||
{
|
||||
}
|
||||
catch (E2)
|
||||
{
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue