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
fnVoidFnfoo() {
returnfnvoid() {};
}
fnvoidmain() {
foo() @inline (); // Error: An expression was expected (I'd expect that just calls whatever foo returned)foo() @inline (foo()); // Not an error, but also doesn't do anything, the (foo()) just gets lost
}