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 #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0144-2.cs
blob
b8ea4f0f236b05989e56a8efc5bd8bac5acc6b48
1
// CS0144: 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
}