Thread overview
[Issue 15265] Phobos doesn't work with property
[Issue 15265] [Visual D]
Oct 30, 2015
Ketmar Dark
Oct 30, 2015
Sobirari Muhomori
[Issue 15265] Phobos doesn't work with -property
Oct 30, 2015
Sobirari Muhomori
Oct 31, 2015
Jonathan M Davis
October 30, 2015
https://issues.dlang.org/show_bug.cgi?id=15265

--- Comment #1 from Ketmar Dark <ketmar@ketmar.no-ip.org> ---
sample code to test:

import std.path;

void main () {
  string temp = "temppath";
  temp = std.path.buildPath(temp, "boo.foo");
}


it compiles without "-property", but gives errors with it:

src/phobos/std/path.d(1432): Error: not a property r1[0..pos].byUTF!char
src/phobos/std/path.d(1432): Error: not a property r2.byUTF!char
src/phobos/std/path.d(1233): Error: template instance
std.path.chainPath!(char[], const(char)[], ) error instantiating
src/phobos/std/path.d(1251):        instantiated from here:
buildPath!(const(char)[][])
z10.d(5):        instantiated from here: buildPath!char

--
October 30, 2015
https://issues.dlang.org/show_bug.cgi?id=15265

Sobirari Muhomori <dfj1esp02@sneakemail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|[Visual D]                  |Phobos doesn't work with
                   |                            |property
           Severity|major                       |regression

--- Comment #2 from Sobirari Muhomori <dfj1esp02@sneakemail.com> ---
Try 2.069 http://dlang.org/changelog/2.069.0.html#property-switch-deprecated

--
October 30, 2015
https://issues.dlang.org/show_bug.cgi?id=15265

Sobirari Muhomori <dfj1esp02@sneakemail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|visuald                     |phobos
            Summary|Phobos doesn't work with    |Phobos doesn't work with
                   |property                    |-property

--
October 31, 2015
https://issues.dlang.org/show_bug.cgi?id=15265

Jonathan M Davis <issues.dlang@jmdavisProg.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |issues.dlang@jmdavisProg.co
                   |                            |m
         Resolution|---                         |FIXED

--- Comment #3 from Jonathan M Davis <issues.dlang@jmdavisProg.com> ---
The example compiles with 2.069.

--