[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs1525-57.cs
blob4dd717ab5de88d9c7f536bca0ad3e693238c3253
1 // CS1026: Unexpected symbol `;', expecting `)' or `,'
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;