add implementation for stpcpy
[mono-project/dkf.git] / mcs / tests / dtest-named-01.cs
blob8a1e5dfc1b3aff30ca5b3a93e60c1cce7c22c795
1 public class Test
3 public void Foo (out int arg)
5 arg = 5;
8 public static int Main ()
10 dynamic d = new Test ();
11 int x;
12 d.Foo (arg: out x);
13 if (x != 5)
14 return 1;
16 return 0;