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
remove NotWorking
[mcs.git]
/
tests
/
test-cls-18.cs
blob
d1b4e0592a2892caf16aa491b77bcc0f33752168
1
// Compiler options: -warnaserror
2
3
using
System
;
4
[
assembly
:
CLSCompliant
(
true
)]
5
6
public class
Base
7
{
8
public virtual void
Test
(
int
[]
a
)
9
{
10
}
11
}
12
13
public class
CLSClass
:
Base
14
{
15
public override void
Test
(
params int
[]
b
)
16
{
17
}
18
19
public static void
Main
()
20
{
21
}
22
}