diff options
Diffstat (limited to 'mcs/tests/test-877.cs')
-rw-r--r-- | mcs/tests/test-877.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/mcs/tests/test-877.cs b/mcs/tests/test-877.cs new file mode 100644 index 0000000000..b372dfc26f --- /dev/null +++ b/mcs/tests/test-877.cs @@ -0,0 +1,18 @@ +using System; + +struct S +{ + string value; + + public S (int arg) + { + throw new ApplicationException (); + } +} + +public class A +{ + public static void Main () + { + } +}
\ No newline at end of file |