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
In class/Microsoft.Build.Tasks/Microsoft.Build.Tasks:
[mcs.git]
/
tests
/
test-cls-03.cs
blob
a59aff114dd139f188f1a98c6a8e507dfb7cf2a8
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
static void
Main
() {}
15
}