minor adjustments

This commit is contained in:
davu 2022-10-16 20:47:53 +02:00 committed by Jan Jurzitza
parent 78740cc1b1
commit 642a0e0a14
5 changed files with 16 additions and 73 deletions

View file

@ -1,30 +1,17 @@
module fooutils;
struct Foo {
void fooHey(){ }
void fooHey(){}
}
void u(Foo foo) {
}
void ufcsHello(ref Foo foo)
{
}
void ufcsBar(Foo foo, string mama)
{
}
void ufcsBarRef(ref Foo foo, string mama)
{
}
void ufcsBarRefConst(ref const Foo foo, string mama)
{
}
void u(Foo foo) {}
void ufcsHello(ref Foo foo) {}
void ufcsBar(Foo foo, string mama) {}
void ufcsBarRef(ref Foo foo, string mama) {}
void ufcsBarRefConst(ref const Foo foo, string mama) {}
void ufcsBarRefConstWrapped(ref const(Foo) foo, string mama) {}
void ufcsBarRefImmuttableWrapped(ref immutable(Foo) foo, string mama) {}
void ufcsBarScope(ref scope Foo foo, string mama) {}
void ufcsBarReturnScope(return scope Foo foo, string mama) {}
private void privateUfcsBar(Foo foo, string message) {}
void notUfcsBar(string message) {}
private void ufcsBarPrivate(Foo foo, string message) {}
void helloBar(string message) {}