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
for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git]
/
mcs
/
errors
/
cs0219-7.cs
blob
ca40a593c34997a115e4bca6f5970b394169d10b
1
// CS0219: The constant `C' is never used
2
// Line: 9
3
// Compiler options: -warn:3 -warnaserror
4
5
class
C
6
{
7
public static void
Main
()
8
{
9
const int
C
=
1
;
10
}
11
}