Properly initialize a rgctx template. Fixes bxc #1147.
[mono-project.git] / mcs / errors / cs1026-2.cs
blob45dfd7385496d657e44a6e5842c29fc855d5fa88
1 // CS1026: Unexpected symbol `;', 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;