[build] Fix warning (#4177)
[mono-project.git] / mcs / tests / gtest-113.cs
blobd300d420d656933a2cd391030a81ac9b84a94f86
1 using System;
3 public delegate V Mapper<T,V> (T item);
5 public class List<T>
7 public void Map<V> (Mapper<T,V> mapper)
8 { }
11 class X
13 public static void Main ()
15 List<int> list = new List<int> ();
16 list.Map (new Mapper<int,double> (delegate (int i) { return i/10.0; }));