a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
29 lines
454 B
Plaintext
29 lines
454 B
Plaintext
//Tests dotted names (namespace, class names)
|
|
//It should emit namespace = A.B.C and type name = D
|
|
//For E.F, namespace = E, name = F
|
|
|
|
.assembly extern mscorlib
|
|
{
|
|
}
|
|
|
|
.assembly Output
|
|
{
|
|
}
|
|
|
|
.module Output
|
|
|
|
.namespace A.B {
|
|
|
|
.class public auto autochar sealed beforefieldinit C.D
|
|
extends [mscorlib]System.Object
|
|
{
|
|
}
|
|
|
|
}
|
|
|
|
.class public auto autochar sealed beforefieldinit E.F
|
|
extends [mscorlib]System.Object
|
|
{
|
|
}
|
|
|