repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-02-15 Jonathan Chambers <joncham@gmail.com>
[mcs.git]
/
errors
/
cs0643.cs
blob
d11593e67f5c6c207c0a216f3afa7f0842ff380c
1
// cs0643.cs: 'x' duplicate named attribute 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