From 2031dbdc71b14745f1918c14a88e4014fff8d5d2 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Sun, 27 Mar 2016 22:47:30 -0700 Subject: [PATCH] Fix parse error --- tests/allman/attribute_constraint.d.ref | 2 +- tests/attribute_constraint.d | 2 +- tests/otbs/attribute_constraint.d.ref | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/allman/attribute_constraint.d.ref b/tests/allman/attribute_constraint.d.ref index c171b80..9fdbce8 100644 --- a/tests/allman/attribute_constraint.d.ref +++ b/tests/allman/attribute_constraint.d.ref @@ -8,7 +8,7 @@ struct SomeStructName { void longFunctionName(AAAAAAAA)(AAAAAAAA a) @property if (someThingsAreTrue!AAAAAAAA && long_condition - && is(some < elaborate && expression)) + && is(elaborate == expression)) { } } diff --git a/tests/attribute_constraint.d b/tests/attribute_constraint.d index 6ffd3df..3683090 100644 --- a/tests/attribute_constraint.d +++ b/tests/attribute_constraint.d @@ -6,7 +6,7 @@ struct SomeStructName { static if (condition) { - void longFunctionName(AAAAAAAA)(AAAAAAAA a) @property if (someThingsAreTrue!AAAAAAAA && long_condition && is(some < elaborate && expression)) + void longFunctionName(AAAAAAAA)(AAAAAAAA a) @property if (someThingsAreTrue!AAAAAAAA && long_condition && is(elaborate == expression)) { } } diff --git a/tests/otbs/attribute_constraint.d.ref b/tests/otbs/attribute_constraint.d.ref index 8704767..6ab18fd 100644 --- a/tests/otbs/attribute_constraint.d.ref +++ b/tests/otbs/attribute_constraint.d.ref @@ -4,7 +4,7 @@ struct SomeStructName { static if (condition) { void longFunctionName(AAAAAAAA)(AAAAAAAA a) @property if (someThingsAreTrue!AAAAAAAA && long_condition - && is(some < elaborate && expression)) { + && is(elaborate == expression)) { } } }