Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bug17.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d922487cf3440ad0d7d9c38e8185161cf255ab23 (plain)
1
2
3
4
5
6
7
8
9
10
//
// Fixed
//
class X {
	static void Main ()
	{
double x = 64.0;
System.Console.WriteLine("x = " + x.ToBoolean(null));
}
}