[xbuild] Add property $(SkipCopyUnchangedFiles)
[mono.git] / mcs / errors / cs0106-10.cs
1 // CS0106: The modifier `async' is not valid for this item
2 // Line: 6
3 // Compiler options: -langversion:future
4
5 interface I
6 {
7         async void M ();
8 }