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
/
cs1738-2.cs
blob
44b3f6d1b14d59cf7a8577be691dd35f938d2a5c
1
// CS1738: Named arguments must appear after the positional arguments when using language version older than 7.2
2
// Line: 13
3
4
using
System
;
5
6
class
MyAttribute
:
Attribute
7
{
8
public
MyAttribute
(
string
s
,
int value
)
9
{
10
}
11
}
12
13
[
MyAttribute
(
s
:
"a"
,
1
)]
14
class
C
15
{
16
}