Merge pull request #5198 from BrzVlad/fix-binprot-stats
[mono.git] / mcs / errors / cs1644-53.cs
1 // CS1644: Feature `tuples' cannot be used because it is not part of the C# 6.0 language specification
2 // Line: 7
3 // Compiler options: -langversion:6
4
5 class Class
6 {
7         static (int, bool) Foo ()
8         {
9                 return;
10         }       
11 }