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
Merge pull request #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs0030.cs
blob
cad0a2ccdd1c127f9087117e351b02d1c6ea0e48
1
// CS0030: Cannot convert type `Blah' to `float'
2
// Line: 12
3
4
public class
Blah
{
5
6
public static int
Main
()
7
{
8
Blah k
;
9
10
k
=
new
Blah
();
11
12
float
f
= (
float
)
k
;
13
14
}
15
}