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

test-738.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e2aba1aa2505f704a6bae9bcd573dacfc8a6b49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Compiler options: -r:test-738-lib.dll

using System;

namespace TestNamespace
{
	public class ResumableInputStream
	{
		public ResumableInputStream()
		{
			stream.Dispose();
		}

		private NonClosingStream stream;
		
		public static void Main ()
		{
		}
	}
}