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-07-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0180.cs
blob
a3ec87677dcafb2d77ddc2839ac3cb38dffae86d
1
// cs0180.cs: `X.extern_method()' cannot be both extern and abstract
2
// Line:
3
4
class
X
{
5
6
public extern abstract int
extern_method
();
7
8
public static void
Main
()
9
{
10
}
11
}
12