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
/
cs4022.cs
blob
bfb120c69cf474b98b1feeae0622a794608a8644
1
// CS4022: The CallerMemberName attribute can only be applied to parameters with default value
2
// Line: 8
3
4
using
System
.
Runtime
.
CompilerServices
;
5
6
class
C
7
{
8
public void
Trace
([
CallerMemberName
]
string
member
)
9
{
10
}
11
}