blob: 2bc8e194e20bc35a629c91b6b0179f9e986baa00 [file] [log] [blame]
using System;
class Example : IDisposable
{
string Method(int RIGHT)
{
new Example();
new Example(
);
new Example { };
using (this)
{
}
var def =
this is default(
Example);
return "ChangeMe";
}
public void Dispose() {}
}