[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / gtest-347.cs
blob70ab2380b9fb1f4ba5d9d47b4759e332fd186581
1 using System;
2 using System.Collections;
3 using System.Collections.Generic;
5 class X
7 public IEnumerable Enumerable(int query)
9 throw new NotImplementedException();
12 public IEnumerable<T> Enumerable<T>(string query)
14 throw new NotImplementedException();
17 public IEnumerable Enumerable(string query)
19 throw new NotImplementedException();
22 public static void Main ()