Merge pull request #495 from nicolas-raoul/fix-for-issue2907-with-no-formatting-changes
[mono.git] / mcs / tests / gtest-347.cs
1 using System;
2 using System.Collections;
3 using System.Collections.Generic;
4
5 class X
6 {
7         public IEnumerable Enumerable(int query)
8         {
9                 throw new NotImplementedException();
10         }
11         
12         public IEnumerable<T> Enumerable<T>(string query)
13         {
14                 throw new NotImplementedException();
15         }
16
17         public IEnumerable Enumerable(string query)
18         {
19                 throw new NotImplementedException();
20         }
21
22         public static void Main ()
23         {
24         }
25 }