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
add comment
[mcs.git]
/
tests
/
test-299.cs
blob
292467dd2337a555f15b9fccb7184b3c1c8bbc41
1
// csc 1.x has a bug
2
3
class
SampleClass
4
{
5
public static
SuperClass
operator
++ (
SampleClass
value
) {
6
return new
SuperClass
();
7
}
8
}
9
10
class
SuperClass
:
SampleClass
11
{
12
public static int
Main
()
13
{
14
return
0
;
15
}
16
}