[metadata] Fix leaks when handling a few attributes (#16675)
[mono-project.git] / mcs / tests / gtest-exmethod-28.cs
blob012068204ae939b3d38dcc042bc6c9add6c64912
1 using System;
3 class Foo { }
5 static partial class Extensions
7 public static bool IsFoo (this Foo self)
9 return true;
13 class Bar { }
15 partial class Extensions
17 public static bool IsBar (this Bar self)
19 return true;
23 class Program
25 public static void Main ()