[mcs] Allow properties and indexers of by-ref values to be set without setter
[mono.git] / mcs / errors / cs1988.cs
1 // CS1988: Async methods cannot have ref or out parameters
2 // Line: 6
3
4 class C
5 {
6         public async void Test (ref int arg)
7         {
8         }
9 }