From 86b61ce2fc0ea1999f4e44b83d95193cdca2a19b Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Thu, 14 Jan 2016 14:28:15 -0800 Subject: [PATCH] Tests for #205 --- tests/allman/issue0205.d.ref | 8 ++++++++ tests/issue0205.d | 8 ++++++++ tests/otbs/issue0205.d.ref | 6 ++++++ 3 files changed, 22 insertions(+) create mode 100644 tests/allman/issue0205.d.ref create mode 100644 tests/issue0205.d create mode 100644 tests/otbs/issue0205.d.ref diff --git a/tests/allman/issue0205.d.ref b/tests/allman/issue0205.d.ref new file mode 100644 index 0000000..46c975d --- /dev/null +++ b/tests/allman/issue0205.d.ref @@ -0,0 +1,8 @@ +unittest +{ + asm + { + } + d[] = a[]; + c[] = d[]; +} diff --git a/tests/issue0205.d b/tests/issue0205.d new file mode 100644 index 0000000..2f421a8 --- /dev/null +++ b/tests/issue0205.d @@ -0,0 +1,8 @@ +unittest +{ + asm + { + } + d[] = a[]; + c[] = d[]; +} diff --git a/tests/otbs/issue0205.d.ref b/tests/otbs/issue0205.d.ref new file mode 100644 index 0000000..a7f02f6 --- /dev/null +++ b/tests/otbs/issue0205.d.ref @@ -0,0 +1,6 @@ +unittest { + asm { + } + d[] = a[]; + c[] = d[]; +}