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
resync
[mcs.git]
/
errors
/
cs3006-3.cs
blob
7e5365c7307b41f018f82c6154dff4571f2f1b69
1
// cs3006-3.cs: Overloaded method `CLSInterface.Test(int)' differing only in ref or out, or in array rank, is not CLS-compliant
2
// Line: 9
3
4
using
System
;
5
[
assembly
:
CLSCompliant
(
true
)]
6
7
public interface
CLSInterface
{
8
void
Test
(
int
a
);
9
void
Test
(
ref int
b
);
10
}