repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[sdks] Fix README.md
[mono-project.git]
/
mcs
/
tests
/
gtest-443.cs
blob
091b0f27780a8bd025a67623df702d65798230fb
1
using
System
;
2
3
class
C
4
{
5
static void
M
<
T
> ()
where T
:
Exception
,
new
()
6
{
7
try
{
8
throw new
T
();
9
}
catch
(
T ex
) {
10
}
11
}
12
13
public static int
Main
()
14
{
15
M
<
ApplicationException
> ();
16
return
0
;
17
}
18
}