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

cs1604.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e87da758a10528732c052490d89bb1ec5b6eedb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs1604.cs: m is a readonly variable
// line: 10
using System.IO;

class X {

	static void Main ()
	{
		using (MemoryStream m = new MemoryStream ()){
			m = null;
		}
	}
}