repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[Http]: Cosmetic, remove some dead code.
[mono-project.git]
/
mcs
/
errors
/
cs1525-49.cs
blob
dd8c29312228d91f646b2828f55a572d605f4707
1
// CS1525: Unexpected symbol `/'
2
// Line: 10
3
4
namespace
Test674
5
{
6
class
MainClass
7
{
8
public static void
Main
(
string
[]
args
)
9
{
10
var
a
=
new
A
(
another
:
something
,
sth
: /
without
/
quotes
);
11
}
12
}
13
14
public class
A
15
{
16
public
A
(
string
sth
,
string
another
)
17
{
18
}
19
}
20
}