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
Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs1644-35.cs
blob
3b9a3b0917341ae7b8020f318dac36f0203c53de
1
// CS1644: Feature `exception filter' cannot be used because it is not part of the C# 5.0 language specification
2
// Line: 14
3
// Compiler options: -langversion:5
4
5
using
System
;
6
7
class
X
8
{
9
public static void
Main
()
10
{
11
int
x
=
4
;
12
try
{
13
throw null
;
14
}
catch
(
Exception
)
when
(
x
>
0
) {
15
}
16
}
17
}