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
Merge pull request #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs8030.cs
blob
4f2751c6ea1cd8aaa730e55a1fd32a23b860dd91
1
// CS8030: Anonymous function or lambda expression converted to a void returning delegate cannot return a value
2
// Line: 10
3
4
using
System
;
5
6
class
C
7
{
8
public void
Test
()
9
{
10
Action a
= () =>
{ return Skip (); }
;
11
}
12
13
void
Skip
()
14
{
15
}
16
}