* Control.cs: fix the checks so that they work correctly for mdi
[mcs.git] / errors / cs1503.cs
blob090b92d0417cf3b72d543134dc29f49fc82a4bd3
1 // CS1503: Argument 1: Cannot convert from `int' to `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);