mirror of
https://github.com/dlang-community/DCD.git
synced 2025-04-26 21:29:58 +03:00
minor adjustments
This commit is contained in:
parent
78740cc1b1
commit
642a0e0a14
5 changed files with 16 additions and 73 deletions
|
@ -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) {}
|
Loading…
Add table
Add a link
Reference in a new issue