2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / 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 ("...");