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-54.cs
blob
53d70f9d563c602ab6eb119af22ce8cccda93df8
1
// CS1644: Feature `tuples' cannot be used because it is not part of the C# 6.0 language specification
2
// Line: 9
3
// Compiler options: -langversion:6
4
5
class
Class
6
{
7
static void
Main
()
8
{
9
var
t
= (
a
:
1
,
b
:
2
);
10
}
11
}