7d05485754
Former-commit-id: df344e34b07851d296efb3e6604c8db42b6f7aa3
13 lines
270 B
C#
13 lines
270 B
C#
// CS1026: Unexpected symbol `;', expecting `)' or `,'
|
|
// Line: 10
|
|
|
|
using System;
|
|
|
|
class Test {
|
|
static void Main ()
|
|
{
|
|
string uri = "http://localhost/";
|
|
int default_port = (uri.StartsWith ("http://") ? 80 : -1;
|
|
}
|
|
}
|