From: Miguel de Icaza Date: Wed, 16 Jan 2002 18:52:44 +0000 (-0000) Subject: add new bug X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=41b32e7b763c8744e381d4985aec86c0e6006dcd;p=mono.git add new bug svn path=/trunk/mcs/; revision=2003 --- diff --git a/mcs/errors/bug17.cs b/mcs/errors/bug17.cs new file mode 100755 index 00000000000..29a1365ba8f --- /dev/null +++ b/mcs/errors/bug17.cs @@ -0,0 +1,9 @@ +// we do not flag the lack of member ToBoolean in double +// +class X { + static void Main () + { +double x = 64.0; +System.Console.WriteLine("x = " + x.ToBoolean(null)); +} +}