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-01-31 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0712.cs
blob
d9943ca0df0085a2f004f618a683edea823dc75d
1
// cs0712.cs: Cannot create an instance of the static class `StaticClass'
2
// Line: 10
3
4
static class
StaticClass
{
5
}
6
7
public class
MainClass
{
8
public static void
Main
()
9
{
10
new
StaticClass
();
11
}
12
}