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
2008-09-29 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs1599-2.cs
blob
b430178325f152e18b2956a29ecee4db643a94e4
1
// cs1599-2.cs: Method or delegate cannot return type `System.ArgIterator'
2
// Line: 8
3
4
using
System
;
5
6
class
C
7
{
8
public
ArgIterator
Method
()
9
{
10
return null
;
11
}
12
}