(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / tests / test-246.cs
blob3afd2529cbfeccc57dd44582059c26a6a1c99955
1 using System;
3 struct Blah : System.IDisposable {
4 public void Dispose () {
5 Console.WriteLine ("foo");
9 class B {
10 static void Main () {
11 using (Blah b = new Blah ()) {
12 Console.WriteLine ("...");