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
[tuner] handle the case with multiple "preserve" attributes
[mono-project.git]
/
mcs
/
tests
/
test-cls-03.cs
blob
248c98f6b6b8c5928c1b300716d59e817339a9d1
1
// Compiler options: -warnaserror
2
3
using
System
;
4
[
assembly
:
CLSCompliant
(
true
)]
5
6
public interface
I1
{
7
}
8
9
public class
CLSClass
{
10
protected internal
I1
Foo
() {
11
return null
;
12
}
13
14
public static void
Main
() {}
15
}