fixes for re-declaring type identifiers in inconsistent ways - addresses GH-2686

This commit is contained in:
Vern Paxson 2025-09-27 22:23:57 -07:00
parent 0700427bac
commit 941ecee692
4 changed files with 41 additions and 0 deletions

View file

@ -59,3 +59,11 @@ global f: function();
global f = function() { };
global f: hook();
global f: event();
# @TEST-START-NEXT
global f = function() { };
type f: bool;
# @TEST-START-NEXT
type f: record {};
type f: bool;