[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / test-246.cs
blob1caf43e5187d227b3dcb7dd94212bff0364b54c6
1 using System;
3 struct Blah : System.IDisposable {
4 public void Dispose () {
5 Console.WriteLine ("foo");
9 class B {
10 public static void Main () {
11 using (Blah b = new Blah ()) {
12 Console.WriteLine ("...");