quebex

A software analysis framework built around the QBE intermediate language

git clone https://git.8pit.net/quebex.git

 1-- SPDX-FileCopyrightText: 2026 Sören Tempel <soeren+git@soeren-tempel.net>
 2--
 3-- SPDX-License-Identifier: GPL-3.0-only
 4
 5module Main (main) where
 6
 7import KTest (ktestTests)
 8import Test.Tasty
 9
10main :: IO ()
11main = defaultMain tests
12
13tests :: TestTree
14tests = testGroup "Tests" [ktestTests]