X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ferrors%2Fcs1503.cs;h=800722ea6c17194c51f5513632acc0e18af8c8fe;hb=30cddad5fb4c3d290906a6e6c33ecd8b07d8b48c;hp=090b92d0417cf3b72d543134dc29f49fc82a4bd3;hpb=53e266903ec6b2d822cf5b0c566f6374df5307a4;p=mono.git diff --git a/mcs/errors/cs1503.cs b/mcs/errors/cs1503.cs index 090b92d0417..800722ea6c1 100644 --- a/mcs/errors/cs1503.cs +++ b/mcs/errors/cs1503.cs @@ -1,17 +1,17 @@ -// CS1503: Argument 1: Cannot convert from `int' to `bool' -// Line: 15 - -class A -{ - public static void Foo (bool test) - { - } -} - -class B -{ - public static void Main() - { - A.Foo (1); - } -} \ No newline at end of file +// CS1503: Argument `#1' cannot convert `int' expression to type `bool' +// Line: 15 + +class A +{ + public static void Foo (bool test) + { + } +} + +class B +{ + public static void Main() + { + A.Foo (1); + } +}