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
/
cs1751.cs
blob
e5f79e3f9d66f067f4834a871a8f01aa169bbf31
1
// CS1751: Cannot specify a default value for a parameter array
2
// Line: 6
3
4
class
C
5
{
6
public static void
Test
(
params
C
[]
a
=
null
)
7
{
8
}
9
}