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
[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git]
/
mcs
/
errors
/
cs4019.cs
blob
3dd1995a1115a1628d9a22eeaad594aa01c499f7
1
// CS4019: The CallerMemberName attribute cannot be applied because there is no standard conversion from `string' to `int'
2
// Line: 8
3
4
using
System
.
Runtime
.
CompilerServices
;
5
6
class
C
7
{
8
public void
Trace
([
CallerMemberName
]
int
member
=
0
)
9
{
10
}
11
}