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
for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git]
/
mcs
/
errors
/
cs0655.cs
blob
319292a60bd37f5c84c90eb3cfa2429e7d278be9
1
// CS0655: `d' 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 decimal
d
;
9
}
10
11
[
Test
(
d
=
44444
)]
12
class
C
13
{
14
}