summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1026-2.cs
blob: 45dfd7385496d657e44a6e5842c29fc855d5fa88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS1026: Unexpected symbol `;', expecting `)'
// Line: 10

using System;

class Test {
        static void Main ()
        {
                string uri = "http://localhost/";
                int default_port = (uri.StartsWith ("http://") ? 80 : -1;
        }
}