2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1503.cs
blobc006bcd14283b5e008679c7f71e977d3516bc438
1 // CS1503: Argument `#1' cannot convert `int' expression to type `bool'
2 // Line: 15
4 class A
6 public static void Foo (bool test)
11 class B
13 public static void Main()
15 A.Foo (1);