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
[interp] Fall back to old implementation when calling on proxy
[mono-project.git]
/
mcs
/
errors
/
cs0161-3.cs
blob
1d6095c1b2fbdd1efc840e3841c3c8352f83cf12
1
// CS0161: `A.Test()': not all code paths return a value
2
// Line: 8
3
4
using
System
.
Threading
.
Tasks
;
5
6
class
A
7
{
8
static async
Task
<
string
>
Test
()
9
{
10
await
CallAsync
();
11
}
12
13
static
Task
<
string
>
CallAsync
()
14
{
15
return null
;
16
}
17
}