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
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs0144-3.cs
blob
491bf253488f36b570a70eb97eaa8e95e9c9d19e
1
// CS0144: 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
}