repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-02-19 Rodrigo Kumpera <rkumpera@novell.com>
[mcs.git]
/
errors
/
cs1736.cs
blob
990445aef99e241331c82312f4a19a01b7d45747
1
// CS1736: The expression being assigned to optional parameter `v' must be a constant or default value
2
// Line: 8
3
// Compiler options: -langversion:future
4
5
public class
C
6
{
7
static int
Value
=
9
;
8
9
public static void
Test
(
int
v
=
Value
)
10
{
11
}
12
}