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
[cominterop] Default to [in] parameter direction when not specified explicitly.
[mono-project.git]
/
mcs
/
errors
/
cs1736.cs
blob
3d070181e374ef1c0e3c04c8640f4c17e80701e4
1
// CS1736: The expression being assigned to optional parameter `v' must be a constant or default value
2
// Line: 8
3
4
public class
C
5
{
6
static int
Value
=
9
;
7
8
public static void
Test
(
int
v
=
Value
)
9
{
10
}
11
}