From 5a194a3e0dc01d7ba0d9ad81030284ebda13cbd6 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 8 Dec 2025 02:08:47 -0500 Subject: Add checks for unused variables --- test/import.tm | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test/import.tm') diff --git a/test/import.tm b/test/import.tm index cb642ac6..e05d7e4f 100644 --- a/test/import.tm +++ b/test/import.tm @@ -9,9 +9,11 @@ func returns_imported_type(->ImportedType) func main() >> empty : [vectors.Vec2] + assert empty == [] assert returns_vec() == Vec2(x=1, y=2) >> imported : [ImportedType] + assert imported == [] assert returns_imported_type() == ImportedType("Hello") assert needs_initializing == 999999999999999999 -- cgit v1.2.3