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-04-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0611-2.cs
blob
8acb02d901f30d845b54dfc2515b40c525fea80a
1
// cs0611-2.cs: Array elements cannot be of type `System.TypedReference'
2
// Line: 5
3
4
public class
Sample
{
5
System
.
TypedReference
[]
references
{
6
get
{
7
return null
;
8
}
9
}
10
11
static void
Main
() {}
12
}
13
14
15