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 #1525 from akoeplinger/fix-dynamicdata-test
[mono-project.git]
/
mcs
/
errors
/
cs0144.cs
blob
440b4048e89518781224f17b22a6cf54ba3a47b6
1
// CS0144: Cannot create an instance of the abstract class or interface `X'
2
// Line: 11
3
abstract class
X
{
4
public abstract void
B
();
5
6
}
7
8
class
Demo
{
9
static void
Main
()
10
{
11
object
x
=
new
X
();
12
}
13
}