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
Take stars out of types where they make more sense.
[mono-project.git]
/
mcs
/
tests
/
test-265.cs
blob
b4836c5b94d72a4d64b095d14a7d408a3eaa1f15
1
using
System
;
2
3
internal class
ClassFormatError
4
{
5
internal
ClassFormatError
(
string
msg
,
params object
[]
p
)
6
{
7
}
8
9
public static void
Main
()
10
{ }
11
}
12
13
internal class
UnsupportedClassVersionError
:
ClassFormatError
14
{
15
internal
UnsupportedClassVersionError
(
string
msg
)
16
:
base
(
msg
)
17
{
18
}
19
}