repo.or.cz
/
mono-project
/
dkf.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
DiffLoader didn't handle encoded name and caused mismatch between .NET.
[mono-project/dkf.git]
/
mcs
/
tests
/
dtest-022.cs
blob
a204674b000c71f35c91656deb91f0e176230fc1
1
using
System
;
2
3
public class
C
4
{
5
static void
M
<
T
> (
T t
)
where T
:
new
()
6
{
7
}
8
9
public static int
Main
()
10
{
11
M
<
dynamic
> (
null
);
12
return
0
;
13
}
14
}