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
2008-09-29 Jb Evain <jbevain@novell.com>
[mcs.git]
/
tests
/
test-593.cs
blob
fba61ba1b418ce66735fc19e5605de0bcb22cad8
1
using
System
;
2
3
interface
I
4
{
5
void
Finalize
();
6
}
7
8
class
MainClass
9
{
10
void
Foo
(
I i
)
11
{
12
i
.
Finalize
();
13
}
14
15
public static void
Main
()
16
{
17
}
18
}