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-06-05 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0655-2.cs
blob
de05ba7ba2246d39227d4c6ff5b924666cd84ded
1
// cs0655-2.cs: `a' is not a valid named attribute argument because it is not a valid attribute parameter type
2
// Line: 11
3
4
using
System
;
5
6
class
TestAttribute
:
Attribute
7
{
8
public int
[][]
a
;
9
}
10
11
[
Test
(
a
=
null
)]
12
class
C
13
{
14
}