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
Add support for Windows x64 Full AOT + LLVM + Interpreter on CI. (#15276)
[mono-project.git]
/
mcs
/
tests
/
test-117.cs
blob
d67451246772276259879cdd58ae049db04305c3
1
using
System
;
2
using
System
.
Collections
;
3
4
public interface
IFoo
{
5
6
}
7
8
public class
Blah
:
IFoo
{
9
10
Hashtable table
;
11
12
public
Blah
()
13
{
14
table
=
new
Hashtable
();
15
}
16
17
public static int
Main
()
18
{
19
Blah b
=
new
Blah
();
20
21
b
.
table
.
Add
(
"Ravi"
, (
IFoo
)
b
);
22
23
return
0
;
24
}
25
26
27
28
}