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
/
cs1644-47.cs
blob
498b627ead59742e13a96d60107a8d969673ebee
1
// CS1644: Feature `out variable declaration' cannot be used because it is not part of the C# 5.0 language specification
2
// Line: 9
3
// Compiler options: -langversion:5
4
5
class
C
6
{
7
public static void
Main
()
8
{
9
int
.
TryParse
(
"0"
,
out var
v
);
10
}
11
}