[Issue 10357] std.typecons.Nullable!(SysTime).Nullable.__ctor!() error instantiating

2013-10-14 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=10357



--- Comment #4 from github-bugzi...@puremagic.com 2013-10-14 22:45:34 PDT ---
Commits pushed to master at https://github.com/D-Programming-Language/phobos

https://github.com/D-Programming-Language/phobos/commit/4844aef982cb8e33372ecd5b58530f0e70c2af72
Remove workaround for issue 10357

Because the root compiler issue 9665 has been fixed.

https://github.com/D-Programming-Language/phobos/commit/cbd3983b597e7d5e77eb63568b046525712425e2
Merge pull request #1638 from 9rnsr/fix10357

Remove workaround for issue 10357

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 10357] std.typecons.Nullable!(SysTime).Nullable.__ctor!() error instantiating

2013-10-14 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=10357



--- Comment #5 from github-bugzi...@puremagic.com 2013-10-14 22:47:59 PDT ---
Commit pushed to 2.064 at https://github.com/D-Programming-Language/phobos

https://github.com/D-Programming-Language/phobos/commit/0e688d03e6452accde51d359f1b2d629b99b31d5
Merge pull request #1638 from 9rnsr/fix10357

Remove workaround for issue 10357

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 10357] std.typecons.Nullable!(SysTime).Nullable.__ctor!() error instantiating

2013-10-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=10357


Walter Bright bugzi...@digitalmars.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||bugzi...@digitalmars.com
 Resolution||FIXED


-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 10357] std.typecons.Nullable!(SysTime).Nullable.__ctor!() error instantiating

2013-10-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=10357



--- Comment #3 from github-bugzi...@puremagic.com 2013-10-10 15:07:06 PDT ---
Commits pushed to master at https://github.com/D-Programming-Language/phobos

https://github.com/D-Programming-Language/phobos/commit/55bc6fc1de30ab58b667c1a0e227f92208a0bece
fix Issue 10357 - std.typecons.Nullable!(SysTime).Nullable.__ctor!() error
instantiating

Add a workaround until qualified postblit is properly implemented.

https://github.com/D-Programming-Language/phobos/commit/e478ddef9e230c66f0d7992e5abf6151c4aea9e6
Merge pull request #1612 from 9rnsr/fix10357

[REG2.063] Issue 10357 - std.typecons.Nullable!(SysTime).Nullable.__ctor!()
error instantiating

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 10357] std.typecons.Nullable!(SysTime).Nullable.__ctor!() error instantiating

2013-10-02 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=10357


Kenji Hara k.hara...@gmail.com changed:

   What|Removed |Added

   Keywords||pull, rejects-valid


--- Comment #2 from Kenji Hara k.hara...@gmail.com 2013-10-02 08:55:10 PDT ---
https://github.com/D-Programming-Language/phobos/pull/1612

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 10357] std.typecons.Nullable!(SysTime).Nullable.__ctor!() error instantiating

2013-07-15 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=10357


Jesse Phillips jesse.k.phillip...@gmail.com changed:

   What|Removed |Added

 CC||jesse.k.phillip...@gmail.co
   ||m


--- Comment #1 from Jesse Phillips jesse.k.phillip...@gmail.com 2013-07-15 
13:13:48 PDT ---
(In reply to comment #0)
 With D 2.063, the following code does no longer compile:
 
 import std.datetime;
 import std.typecons;
 
 unittest
 {
 Nullable!SysTime time = SysTime(0);
 }

A work around is:

unittest {
Nullable!SysTime time;
time = SysTime(0);
}

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---