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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0719.cs
blob
ce96de582a346c4bd3e895ac0e520343cf40e7b9
1
// cs0719.cs: `StaticClass': array elements cannot be of static type
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
}