From ca0d71c15f2f9d89c61d5a31155f1e10280b6b50 Mon Sep 17 00:00:00 2001 From: Walter Bright Date: Tue, 28 Feb 2012 14:00:43 -0800 Subject: [PATCH] fix line endings --- test/runnable/testconst.d | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/test/runnable/testconst.d b/test/runnable/testconst.d index 6d7f6801564f..7cb1c46afec9 100644 --- a/test/runnable/testconst.d +++ b/test/runnable/testconst.d @@ -2497,21 +2497,21 @@ void test7202() /************************************/ // 7554 -T outer7554(T)(immutable T function(T) pure foo) pure { - pure int inner() { - return foo(5); - } - return inner(); -} -int sqr7554(int x) pure { - return x * x; -} +T outer7554(T)(immutable T function(T) pure foo) pure { + pure int inner() { + return foo(5); + } + return inner(); +} +int sqr7554(int x) pure { + return x * x; +} void test7554() -{ - assert(outer7554(&sqr7554) == 25); +{ + assert(outer7554(&sqr7554) == 25); - immutable(int function(int) pure) ifp = &sqr7554; -} + immutable(int function(int) pure) ifp = &sqr7554; +} /************************************/