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
2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
tests
/
test-265.cs
blob
d58107ebb6e4b50049bbb3648d92c181d360fa60
1
using
System
;
2
3
internal class
ClassFormatError
4
{
5
internal
ClassFormatError
(
string
msg
,
params object
[]
p
)
6
{
7
}
8
9
static void
Main
()
10
{ }
11
}
12
13
internal class
UnsupportedClassVersionError
:
ClassFormatError
14
{
15
internal
UnsupportedClassVersionError
(
string
msg
)
16
:
base
(
msg
)
17
{
18
}
19
}