Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-575.cs
1 //
2 // This comes from bug 82064, sadly, Mono does not currently abort
3 // as it should on the extra value on the stack
4 //
5 using System;
6 using System.IO;
7
8 class Program
9 {
10         public static void Main (string [] args)
11         {
12                 using (StringWriter stringWriter = new StringWriter ()) {
13                 }
14         }
15 }