bug-gawk
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Assertion failed


From: Denis Shirokov
Subject: Re: Assertion failed
Date: Thu, 9 Jan 2020 01:45:47 +0200

hello

this is reproducing script for the issue:

# gawk.exe -b -s -f ./bug_assertion.gwk ./bug_assertion.gwk

BEGIN{
        
        abc( "varname" )

        varname

}

func    abc( n ) {
        
        if ( n in SYMTAB ) {
                
                print "before"
                
                is = SYMTAB[ n ]
                
                print "after" } }

# before
# Assertion failed: n->type == Node_val, file node.c, line 304

# GNU Awk 5.0.1, API: 2.0 (GNU MPFR 3.1.5, GNU MP 6.1.2)


reproduce file attached


best regards
Denis Shirokov

Attachment: bug_assertion.gwk
Description: Binary data


reply via email to

[Prev in Thread] Current Thread [Next in Thread]