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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0664-3.cs
blob
3eb26cf8c869d9260301c4b84e03894879232060
1
// cs0664-3.cs: Literal of type double cannot be implicitly converted to type `float'. Add suffix `f' to create a literal of this type
2
// Line: 13
3
4
using
System
;
5
6
public sealed class
BoundAttribute
:
System
.
Attribute
7
{
8
public float
D
;
9
}
10
11
class
C
12
{
13
[
Bound
(
D
=
300
d
)]
14
double
d2
;
15
}