June 09, 2015
https://issues.dlang.org/show_bug.cgi?id=7600

Andrei Alexandrescu <andrei@erdani.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Version|unspecified                 |D2

--
November 30, 2019
https://issues.dlang.org/show_bug.cgi?id=7600

RazvanN <razvan.nitu1305@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |razvan.nitu1305@gmail.com
         Resolution|---                         |FIXED

--- Comment #2 from RazvanN <razvan.nitu1305@gmail.com> ---
It now prints:

onlineapp.d(6): Error: function onlineapp.foo(ref string x) is not callable
using argument types (string)
onlineapp.d(6):        cannot pass rvalue argument "var" of type string to
parameter ref string x
onlineapp.d(8): Error: function onlineapp.bar(ref int x) is not callable using
argument types (immutable(int))
onlineapp.d(8):        cannot pass argument x of type immutable(int) to
parameter ref int x

Which is the correct behavior. Closing as fixed.

--