Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-575.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1fc2f31d1126759fa573fbce64a63f390fb77b09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//
// This comes from bug 82064, sadly, Mono does not currently abort
// as it should on the extra value on the stack
//
using System;
using System.IO;

class Program
{
	public static void Main (string [] args)
	{
		using (StringWriter stringWriter = new StringWriter ()) {
		}
	}
}