repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add failing test for bnc550722
[mcs.git]
/
tests
/
dtest-002.cs
blob
010136aa4ebff8282872413518a8b6600eb369e9
1
public interface
I
2
{
3
dynamic
D
();
4
object
D2
();
5
}
6
7
public class
C
:
I
8
{
9
public object
D
()
10
{
11
return null
;
12
}
13
14
public dynamic
D2
()
15
{
16
return null
;
17
}
18
19
public static int
Main
()
20
{
21
return
0
;
22
}
23
}