2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-347.cs
blobc001f85980c1cb527e18220dfff4d66870ba3de7
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 static void Main ()