* Control.cs: fix the checks so that they work correctly for mdi
[mcs.git] / errors / cs1026-2.cs
blob2ef8ebfba3f8541ab54014a39ca3c9b32263a344
1 // cs1026-2.cs: Expecting `)'
2 // Line: 10
4 using System;
6 class Test {
7 static void Main ()
9 string uri = "http://localhost/";
10 int default_port = (uri.StartsWith ("http://") ? 80 : -1;