File: testcase8.hs

package info (click to toggle)
hasktags 0.73.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 368 kB
  • sloc: haskell: 2,501; makefile: 3
file content (22 lines) | stat: -rw-r--r-- 382 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
-- to be found Main
-- to be found ABC
-- to be found ABCD
-- to be found (@=?)
-- to be found (@=:)
-- to be found dummy
-- to be found main
module Main where

data ABC a = ABC a
class (Show a) => (ABCD a) where
  abcshow :: (ABC a)

(@=?), (@=:) :: (Eq a, Show a) => a -> a -> Int

expected @=? actual = undefined
expected @=: actual = undefined

dummy = "a"

main = print "abc"