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
Warnings cleanup
[mcs.git]
/
errors
/
cs0719-2.cs
blob
a345c6bfa48c6fad30a019c12bc0a6cf2cb1e589
1
// CS0719: Array elements cannot be of static type `StaticClass'
2
// Line: 12
3
4
using
System
;
5
6
static class
StaticClass
7
{
8
}
9
10
class
MainClass
11
{
12
Type Type
{
13
get
{
14
return typeof
(
StaticClass
[]);
15
}
16
}
17
}