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
/
cs1615-3.cs
blob
dc9a604fbb4b8b5e4c490e78569be46529ae200c
1
// CS1615: Argument `#1' does not require `out' modifier. Consider removing `out' modifier
2
// Line: 8
3
// Compiler options: -langversion:experimental
4
5
public class
C
6
{
7
public static void
Main
()
8
{
9
Foo
(
out var
y
);
10
}
11
12
static void
Foo
(
int
x
)
13
{
14
}
15
16
static void
Foo
(
string
x
)
17
{
18
}
19
}