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
2010-04-01 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0229-4.cs
blob
a571c17e0c958a8043285c1116f1de1350305110
1
// CS0229: Ambiguity between `TestLib.FOO' and `TestLib.FOO()'
2
// Line: 9
3
// Compiler options: -r:CS0229-4-lib.dll
4
5
public class
Test
6
{
7
public static void
Main
()
8
{
9
System
.
Console
.
WriteLine
(
TestLib
.
FOO
);
10
}
11
}