From 47e6a8c7c47ed66c33828c467093accad0401cd4 Mon Sep 17 00:00:00 2001
From: Daniel Fischer <daniel.is.fischer@googlemail.com>
Date: Sun, 29 May 2011 22:45:44 +0200
Subject: [PATCH 4/4] Whitespace in tcrun029
---
tests/ghc-regress/typecheck/should_run/tcrun029.hs | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/ghc-regress/typecheck/should_run/tcrun029.hs b/tests/ghc-regress/typecheck/should_run/tcrun029.hs
index f2aadab..ee9ae0f 100644
|
a
|
b
|
|
| 7 | 7 | |
| 8 | 8 | module Main where |
| 9 | 9 | |
| 10 | | data Color = Red |
| | 10 | data Color = Red |
| 11 | 11 | | Black |
| 12 | 12 | deriving Show |
| 13 | 13 | |
| 14 | | data Ord k => Tree k d = None |
| | 14 | data Ord k => Tree k d = None |
| 15 | 15 | | Node{color::Color, |
| 16 | 16 | key::k, |
| 17 | 17 | item::d, |