[metadata] Fix leaks when handling a few attributes (#16675)
[mono-project.git] / mcs / tests / test-pattern-11.cs
blobbc889512668900f1b49a2a5cf7c46af89526d605
1 using System;
3 class X
5 public static int Main ()
7 object o = null;
8 for (o = "abcd"; o is String s; o = null) {
9 Console.WriteLine (s);
13 return 0;