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
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
errors
/
cs1525-44.cs
blob
d2bb1d2f5aba20fe637d2940d6cbd33af606bd89
1
// CS1525: Unexpected symbol `}'
2
// Line: 10
3
4
using
System
;
5
6
class
Foo
7
{
8
void
Bar
()
9
{
10
throw new
Exception
(
"e"
,
11
}
12
}