Ticket #5229: 0004-Whitespace-in-tcrun029.patch

File 0004-Whitespace-in-tcrun029.patch, 0.8 KB (added by daniel.is.fischer, 2 years ago)
  • tests/ghc-regress/typecheck/should_run/tcrun029.hs

    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  
    77 
    88module Main where 
    99 
    10 data Color = Red  
     10data Color = Red 
    1111           | Black 
    1212             deriving Show 
    1313 
    14 data Ord k => Tree k d = None  
     14data Ord k => Tree k d = None 
    1515                       | Node{color::Color, 
    1616                              key::k, 
    1717                              item::d,