packages feed

aihc-parser-1.0.0.2: test/Test/Fixtures/oracle/NondecreasingIndentation/nested-do-deep.hs

{- ORACLE_TEST pass -}
{-# LANGUAGE NondecreasingIndentation #-}

-- NondecreasingIndentation: deeply nested do blocks at the same indentation.

module NondecreasingDeepNestedDo where

f = do
  do
    do
      do
      action
  where
    action = undefined