[mcs] Initial by ref returns and variables support
[mono.git] / mcs / errors / cs1644-55.cs
1 // CS1644: Feature `byref locals and returns' cannot be used because it is not part of the C# 6.0 language specification
2 // Line: 9
3 // Compiler options: -langversion:6
4
5 class Text
6 {
7         static ref long Foo ()
8         {
9                 throw new System.NotImplementedException ();
10         }
11 }