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 #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0029-32.cs
blob
ec9959fcf303076ba1d3438bcd768ec33ae7d114
1
// CS0029: Cannot implicitly convert type `string' to `int'
2
// Line: 11
3
4
using
System
;
5
using
System
.
Threading
.
Tasks
;
6
7
class
C
8
{
9
public async
Task
<
int
>
Test
()
10
{
11
return await
Call
();
12
}
13
14
Task
<
string
>
Call
()
15
{
16
return null
;
17
}
18
}