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
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs8196.cs
blob
cf58de30ddc79de0d98a55bcb73d9c290a1e1b79
1
// CS8196: Reference to an implicitly typed out variable `x1' is not permitted in the same argument list
2
// Line: 8
3
4
public class
C
5
{
6
public static void
Main
()
7
{
8
Test
(
out var
x1
,
out
x1
);
9
}
10
11
static void
Test
(
out int
x
,
out int
x2
)
12
{
13
x
=
1
;
14
x2
=
2
;
15
}
16
}