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
Update the reference assemblies we ship in mono.
[mono-project.git]
/
mcs
/
errors
/
cs0029-14.cs
blob
e0141e92b643097e0b6f4226b8feaf3d687b68e3
1
// CS0029: Cannot implicitly convert type `int' to `System.IDisposable'
2
// Line: 8
3
4
class
A
5
{
6
public static void
Main
()
7
{
8
System
.
IDisposable id
=
1
;
9
}
10
}