Merge pull request #4327 from vkargov/vk-abcremedy
[mono.git] / mcs / tests / test-877.cs
1 using System;
2
3 struct S
4 {
5         string value;
6
7         public S (int arg)
8         {
9                 throw new ApplicationException ();
10         }
11 }
12
13 public class A
14 {
15         public static void Main ()
16         {
17         }
18 }