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
[Wasm] Fix memory override in mono_wasm_add_assembly
[mono-project.git]
/
mcs
/
tests
/
test-746.cs
blob
7ed53fdb00f04cc81e4549da58a926e52f917b25
1
// Compiler options: -warnaserror -warn:4
2
3
using
System
;
4
5
interface
IList
6
{
7
int
Count { get; set; }
8
}
9
10
interface
ICounter
11
{
12
void
Count
(
int
i
);
13
}
14
15
interface
IEx
16
{
17
void
Count
(
params int
[]
i
);
18
}
19
20
interface
IListCounter
:
IEx
,
IList
,
ICounter
21
{
22
}
23
24
class
Test
25
{
26
static void
Foo
(
IListCounter t
)
27
{
28
t
.
Count
(
1
);
29
}
30
31
public static void
Main
()
32
{
33
}
34
}