Merge pull request #15293 from lewing/wasm-clean
[mono-project.git] / mcs / tests / test-tuple-04-lib.cs
blob469de9c9d1857a720a257161b18fd30c6b9caaeb
1 // Compiler options: -t:library
3 using System;
4 using System.Collections.Generic;
6 public class X
8 public static (int a, string, bool b, object) Test1 ()
10 return ValueTuple.Create (1, "2", true, new X ());
13 public static (int x, (int x2, string y2), bool z) Field;