log issue

This commit is contained in:
2025-11-17 09:34:13 -08:00
parent f04813519c
commit 30ff87c2e2
2 changed files with 15 additions and 1 deletions

14
tests/aside/Quantity.newt Normal file
View File

@@ -0,0 +1,14 @@
module Quantity
import Prelude
foo : Nat Nat
foo x = x
-- This should fail to compile
bar : x. Nat
bar {x} = foo x
main : IO Unit
main = printLn $ bar {S Z}