packages feed

retrie-0.1.1.1: tests/inputs/Qualified.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.
#
-u Qualified.foo
===
 module Qualified where

 import Bar (x)
 
 foo :: Int -> Int
 foo x = x - Bar.x
 
 bar :: Int -> Int
-bar x = foo x
+bar x = x - Bar.x