Fix #118
This commit is contained in:
parent
c291340e90
commit
76c37dd8f6
3628
src/dfmt.d
3628
src/dfmt.d
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,16 @@
|
|||
auto foo = bar(1, 1, 1);
|
||||
auto foo = A!(int, int, int);
|
||||
enum foo = bar(1, 1, 1);
|
||||
enum foo = A!(int, int, int);
|
||||
|
||||
enum bar
|
||||
{
|
||||
a = Struct(a, b, c),
|
||||
b = Struct(d, e, f)
|
||||
}
|
||||
|
||||
enum bar
|
||||
{
|
||||
a = Struct(a, b, c),
|
||||
b = Struct(d, e, f),
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
auto foo = bar(1, 1, 1);
|
||||
auto foo = A!(int, int, int);
|
||||
enum foo = bar(1, 1, 1);
|
||||
enum foo = A!(int, int, int);
|
||||
|
||||
enum bar
|
||||
{
|
||||
a = Struct(a, b, c),
|
||||
b = Struct(d, e, f)
|
||||
}
|
||||
|
||||
enum bar
|
||||
{
|
||||
a = Struct(a, b, c),
|
||||
b = Struct(d, e, f),
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
auto foo = bar(1, 1, 1);
|
||||
auto foo = A!(int, int, int);
|
||||
enum foo = bar(1, 1, 1);
|
||||
enum foo = A!(int, int, int);
|
||||
|
||||
enum bar {
|
||||
a = Struct(a, b, c),
|
||||
b = Struct(d, e, f)
|
||||
}
|
||||
|
||||
enum bar {
|
||||
a = Struct(a, b, c),
|
||||
b = Struct(d, e, f),
|
||||
}
|
Loading…
Reference in New Issue