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 #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs4020.cs
blob
ee36f62e3895a28939f6a7d85e3d58846220d91e
1
// CS4020: The CallerLineNumber 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
([
CallerLineNumber
]
int
member
)
9
{
10
}
11
}