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
Merge pull request #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs4021.cs
blob
f3f5d48011fd1be2bd66e38e434d9ddafe651f05
1
// CS4021: The CallerFilePath 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
([
CallerFilePath
]
string
member
)
9
{
10
}
11
}