This commit is contained in:
Hackerpilot 2015-03-18 16:31:56 -07:00
parent c291340e90
commit 76c37dd8f6
4 changed files with 1861 additions and 1813 deletions

3628
src/dfmt.d

File diff suppressed because it is too large Load Diff

View File

@ -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),
}

16
tests/issue0118.d Normal file
View File

@ -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),
}

View File

@ -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),
}