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
/
cs1741.cs
blob
aaf19309e09f1dc7bad6fe450d8ccc5bc0fb162b
1
// CS1741: Cannot specify a default value for the `ref' parameter
2
// Line: 6
3
4
public class
C
5
{
6
public void
Test
(
ref bool
a
=
true
)
7
{
8
}
9
}