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
[sdks] Fix README.md
[mono-project.git]
/
mcs
/
tests
/
test-706.cs
blob
1cc147fdb1e48a55476b99a66ba3cdae2a3426a2
1
using
System
;
2
3
namespace
Test
4
{
5
public abstract class
CustomParentAttribute
:
Attribute
6
{
7
public abstract void
DoSomething
();
8
}
9
10
[
CustomChild
]
11
public class
MyClass
12
{
13
private sealed class
CustomChildAttribute
:
CustomParentAttribute
14
{
15
public override void
DoSomething
()
16
{
17
}
18
}
19
20
21
public static void
Main
()
22
{
23
}
24
}
25
}