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
[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git]
/
mcs
/
errors
/
cs8199.cs
blob
3d89c68c69630fa7d2a4b0a2f1f6520b983007ab
1
// CS8199: The syntax `var (...)' as an lvalue is reserved
2
// Line: 8
3
4
class
X
5
{
6
public static void
Main
()
7
{
8
var
(
x
.
a
,
y
) = (
1
,
'g'
);
9
}
10
}