Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-310.cs
1 using System;
2 using System.Collections.Generic;
3
4 namespace MonoBugs
5 {
6         public static class IncompleteGenericInference
7         {
8                 public static void DoSomethingGeneric<T1, T2>(IEnumerable<T1> t1, IDictionary<T1,T2> t2)
9                 {
10                 }
11
12                 public static void Main()
13                 {
14                         List<int> list = new List<int>();
15                         System.Collections.Generic.Dictionary<int, float> dictionary = new Dictionary<int, float>();
16                         DoSomethingGeneric(list, dictionary);
17                 }
18         }
19 }