Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-738.cs
1 // Compiler options: -r:test-738-lib.dll
2
3 using System;
4
5 namespace TestNamespace
6 {
7         public class ResumableInputStream
8         {
9                 public ResumableInputStream()
10                 {
11                         stream.Dispose();
12                 }
13
14                 private NonClosingStream stream;
15                 
16                 public static void Main ()
17                 {
18                 }
19         }
20 }
21