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
2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0144-3.cs
blob
0f1adba284416409343f7013861fa335409cf9d1
1
// cs0144-3.cs: Cannot create an instance of the abstract class or interface `ITest'
2
// Line: 9
3
// Compiler options: -r:CS0144-3-lib.dll
4
5
public class
SampleClass
{
6
public void
Main
()
7
{
8
ITest modelo
;
9
modelo
=
new
ITest
();
10
}
11
}