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-07-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0182-4.cs
blob
e68c9c216a56b78f856fc4750bc1b6ffd1c8955e
1
// CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
2
// Line: 4
3
4
[
A
(
true is bool
)]
5
class
AAttribute
:
System
.
Attribute
6
{
7
public
AAttribute
(
bool
b
)
8
{
9
}
10
}