From d1b2e9f598fb8e4c0bb46fda3bc2b8e03ff1db55 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Wed, 4 Sep 2024 13:48:26 -0400 Subject: Disallow 'use' statements that aren't top level --- ast.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ast.h') diff --git a/ast.h b/ast.h index 1d295e58..53adb6a8 100644 --- a/ast.h +++ b/ast.h @@ -291,7 +291,7 @@ struct ast_s { bool skip_source:1; } DocTest; struct { - const char *name; + const char *path; enum { USE_LOCAL, USE_MODULE, USE_SHARED_OBJECT, USE_HEADER } what; } Use; struct { -- cgit v1.2.3