2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1503-4.cs
blob22600207336d084df5f7f0d79ab90f54ec767173
1 // CS1503: Argument `#1' cannot convert `bool' expression to type `int'
2 // Line: 12
4 public class C
6 static void Foo<T>(T t)
10 public static void Main ()
12 Foo<int> (true);