repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-04-01 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs1026-2.cs
blob
45dfd7385496d657e44a6e5842c29fc855d5fa88
1
// CS1026: Unexpected symbol `;', expecting `)'
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
}