Update dependencies from https://github.com/dotnet/arcade build 20190729.1 (#15881)
[mono-project.git] / mcs / tests / test-923.cs
blob17710cd3dfb1d9b4ac991a640ab1189428292229
1 using System;
3 public struct Location
5 public int x;
6 public int y;
9 public struct LocationWrapper
11 public Location location;
14 class Program
16 static void Main ()
20 public static void Test (out Location location)
22 location.x = 0;
23 location.y = location.x;
26 public static void Test (LocationWrapper member)
28 member.location.x = 0;
29 member.location.y = member.location.x;
32 public static void Test (out LocationWrapper member)
34 member.location.x = 0;
35 member.location.y = member.location.x;