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
2009-06-26 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0144-2.cs
blob
14a864fe8d4bbaed97354518c7ef39a52354a5b1
1
// cs0144-2.cs: Cannot create an instance of the abstract class or interface `X'
2
// Line: 11
3
interface
X
{
4
void
A
();
5
6
}
7
8
class
Demo
{
9
static void
Main
()
10
{
11
object
x
=
new
X
();
12
}
13
}