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
2009-12-12 Rodrigo Kumpera <rkumpera@novell.com>
[mcs.git]
/
tests
/
test-317.cs
blob
1dc8feec269f0c218c93f46a8c5e982c66d4bbe6
1
// Compiler options: /warn:4 /warnaserror
2
interface
IFoo
3
{
4
void
Test
(
int
t
);
5
}
6
7
interface
IBar
:
IFoo
8
{
9
new int
Test
(
int
t
);
10
}
11
12
class
X
13
{
14
static void
Main
()
15
{ }
16
}