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: 3b36dfbc1f2555dee4e1c3080df9537bacff64a6 (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;
		}
	}
}