packages feed

purescript-0.10.6: examples/failing/BindInDo-2.purs

-- @shouldFailWith CannotUseBindWithDo
module Main where

import Prelude

foo = do
  let bind = 42
  x <- [4, 5, 6]
  pure x