* TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
[mono-project.git] / mcs / errors / gcs0411-7.cs
blob815602d5e6a04456414ab238813282dbcc9220a5
1 // CS0411: The type arguments for method `Test' cannot be infered from the usage. Try specifying the type arguments explicitly
2 // Line: 15
3 using System;
5 public delegate void Foo<T> (T t);
7 class X
9 public void Test<T> (Foo<T> foo)
10 { }
12 static void Main ()
14 X x = new X ();
15 x.Test (delegate (string str) { });