You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> mun build test.mun
mun: /usr/lib/libtinfo.so.5: no version information available (required by mun)
thread 'main' panicked at 'missing function value for hir function: 'foo'', <::std::macros::panic macros>:5:6
If either of the commented lines are used the panic does not occur.
externfnfoo();externfnbar();pubfntwo(){bar();//foo(); // works with thisone();// no effect with or without this}//pub fn fn_one() { // works with thisfnone(){bar();foo();}
#[test]fnissue_222(){test_snapshot(r#" extern fn foo(); extern fn bar(); pub fn two() { bar(); //foo(); // works with this one(); // no effect with or without this } //pub fn fn_one() { // works with this fn one() { bar(); foo(); } "#)}
Looks like this panic
If either of the commented lines are used the panic does not occur.
could be related to #221?
The text was updated successfully, but these errors were encountered: