Merge pull request #1900 from esdrubal/cyclic-ref
[mono-project.git] / mcs / errors / cs0161-3.cs
blob1d6095c1b2fbdd1efc840e3841c3c8352f83cf12
1 // CS0161: `A.Test()': not all code paths return a value
2 // Line: 8
4 using System.Threading.Tasks;
6 class A
8 static async Task<string> Test ()
10 await CallAsync ();
13 static Task<string> CallAsync ()
15 return null;