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-19 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs1599.cs
blob
924ede04cd0d19d72bd8f5b76261dca715b8743a
1
// cs1599.cs: Method or delegate cannot return type `System.TypedReference'
2
// Line: 8
3
4
using
System
;
5
6
class
C
7
{
8
public
TypedReference
Method
()
9
{
10
return null
;
11
}
12
}