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
2004-03-01 Larry Ewing <lewing@ximian.com>
[mono-project.git]
/
mcs
/
tests
/
cls-test-14.cs
blob
4d408c56a21bc206cd38a3bd2691326df8d9cecb
1
using
System
;
2
3
public class
CLSClass
{
4
[
CLSCompliant
(
false
)]
5
static public implicit operator
CLSClass
(
byte value
) {
6
return new
CLSClass
();
7
}
8
9
[
CLSCompliant
(
true
)]
10
private void
Error
(
bool
arg
) {
11
}
12
}
13
14
public class
MainClass
{
15
public static void
Main
() {
16
}
17
}