Merge pull request #5198 from BrzVlad/fix-binprot-stats
[mono.git] / mcs / errors / cs1525-57.cs
1 // CS1026: Unexpected symbol `;', expecting `)' or `,'
2 // Line: 10
3
4 using System;
5
6 class Test {
7         static void Main ()
8         {
9                 string uri = "http://localhost/";
10                 int default_port = (uri.StartsWith ("http://") ? 80 : -1;
11         }
12 }