6db692b74b
Former-commit-id: 46737382176d7b811604042c613d5df6eef74f33
10 lines
131 B
C#
10 lines
131 B
C#
// CS1983: The return type of an async method must be void or task type
|
|
// Line: 6
|
|
|
|
class C
|
|
{
|
|
public async object Test ()
|
|
{
|
|
}
|
|
}
|