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
2009-03-10 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0719.cs
blob
516bfea1063596517204c20a94b6ee14b7ccb958
1
// CS0719: Array elements cannot be of static type `StaticClass'
2
// Line: 10
3
4
static class
StaticClass
{
5
}
6
7
class
MainClass
{
8
public static object
Method
()
9
{
10
return new
StaticClass
[
3
];
11
}
12
}