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
2010-04-15 Rodrigo Kumpera <rkumpera@novell.com>
[mono-project.git]
/
mcs
/
errors
/
cs0610-2.cs
blob
d5d90a594355f73b77c7d891db4bc6e58164fbcc
1
// cs0610-2.cs: Field or property cannot be of type `System.TypedReference'
2
// Line: 5
3
4
public class
Sample
{
5
System
.
TypedReference reference
{
6
get
{
7
return null
;
8
}
9
}
10
}
11
12
13