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

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

class X {

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