packages feed

retrie-0.1.0.0: tests/inputs/Imports.test

# Copyright (c) Facebook, Inc. and its affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
#
-f Imports.foo
--import "import Bar"
--import "import Data.Coerce (coerce)"
--import "import qualified Data.Text as Text"
--import "import Foo"
--import "import Bar"
===
 module Imports where
 
 import Foo
+import Bar
+import Data.Coerce (coerce)
+import qualified Data.Text as Text
 
 foo :: [Int] -> [Int]
 foo xs = xs ++ [1,2, 3]
 
 bar :: [Int]
-bar =    [4,5,6] ++ [1,2,3]
+bar =    foo [4,5,6]
 
 newtype Baz = Baz [Int]
 
 baz :: Baz -> [Int]
 baz (Baz is) = is ++ bar
 
 quux :: [Int]
 quux = [7,8, 9 ] ++ bar