[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / tests / test-tuple-04-lib.cs
1 // Compiler options: -t:library
2
3 using System;
4 using System.Collections.Generic;
5
6 public class X
7 {
8         public static (int a, string, bool b, object) Test1 ()
9         {
10                 return ValueTuple.Create (1, "2", true, new X ());
11         }
12
13         public static (int x, (int x2, string y2), bool z) Field;
14 }