Remove unnecessary !s for [DoesNotReturn] (dotnet/coreclr#26512)
[mono-project.git] / mcs / errors / cs8151.cs
blob934faefff7cfce6f488b65731241ec2134955dca
1 // CS8151: The return by reference expression must be of type `string' because this method returns by reference
2 // Line: 10
4 public class X
6 int field;
8 ref string TestMethod ()
10 return ref field;