Files
linux-packaging-mono/mcs/tests/test-321.cs

14 lines
234 B
C#
Raw Normal View History

using System;
struct X : IDisposable {
public void Dispose ()
{
}
public static void Main ()
{
X x = new X ();
using (x)
;
}
}