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
/
cs0643.cs
blob
b0096f5a6b90ba667c8646f24c7d4955c6005789
1
// CS0643: Duplicate named attribute `x' argument
2
// Line: 8
3
4
using
System
;
5
6
public class
A
:
Attribute
{
7
public int
x
;
8
[
A
(
x
=
1
,
x
=
2
)]
9
public static void
Main
()
10
{
11
}
12
}
13