``` scala inline def foo(inline n: => Int) = n + n foo({ println("foo"); 42 }) ``` should print two times `"foo"` and return 84 but currently it just returns 84 without printing anything.