[metadata] Fix leaks when handling a few attributes (#16675)
[mono-project.git] / mcs / tests / test-cls-03.cs
blob248c98f6b6b8c5928c1b300716d59e817339a9d1
1 // Compiler options: -warnaserror
3 using System;
4 [assembly:CLSCompliant(true)]
6 public interface I1 {
9 public class CLSClass {
10 protected internal I1 Foo() {
11 return null;
14 public static void Main() {}