Thread overview | |||||||||
---|---|---|---|---|---|---|---|---|---|
|
June 14, 2013 [Issue 10357] New: std.typecons.Nullable!(SysTime).Nullable.__ctor!() error instantiating | ||||
---|---|---|---|---|
| ||||
http://d.puremagic.com/issues/show_bug.cgi?id=10357 Summary: std.typecons.Nullable!(SysTime).Nullable.__ctor!() error instantiating Product: D Version: D2 Platform: All OS/Version: All Status: NEW Severity: regression Priority: P2 Component: DMD AssignedTo: nobody@puremagic.com ReportedBy: kroeplin.d@googlemail.com --- Comment #0 from Mario Kroeplin <kroeplin.d@googlemail.com> 2013-06-14 10:15:10 PDT --- With D 2.063, the following code does no longer compile: import std.datetime; import std.typecons; unittest { Nullable!SysTime time = SysTime(0); } The error message is: /src/phobos/std/typecons.d(1178): Error: mutable method std.datetime.SysTime.opAssign is not callable using a inout object Error: template instance std.typecons.Nullable!(SysTime).Nullable.__ctor!() error instantiating The fix for Issue 10268 doesn't help. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
July 15, 2013 [Issue 10357] std.typecons.Nullable!(SysTime).Nullable.__ctor!() error instantiating | ||||
---|---|---|---|---|
| ||||
Posted in reply to Mario Kroeplin | http://d.puremagic.com/issues/show_bug.cgi?id=10357 Jesse Phillips <Jesse.K.Phillips+D@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |Jesse.K.Phillips+D@gmail.co | |m --- Comment #1 from Jesse Phillips <Jesse.K.Phillips+D@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: ------- |
October 02, 2013 [Issue 10357] std.typecons.Nullable!(SysTime).Nullable.__ctor!() error instantiating | ||||
---|---|---|---|---|
| ||||
Posted in reply to Mario Kroeplin | http://d.puremagic.com/issues/show_bug.cgi?id=10357 Kenji Hara <k.hara.pg@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |pull, rejects-valid --- Comment #2 from Kenji Hara <k.hara.pg@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: ------- |
October 10, 2013 [Issue 10357] std.typecons.Nullable!(SysTime).Nullable.__ctor!() error instantiating | ||||
---|---|---|---|---|
| ||||
Posted in reply to Mario Kroeplin | http://d.puremagic.com/issues/show_bug.cgi?id=10357 --- Comment #3 from github-bugzilla@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: ------- |
October 10, 2013 [Issue 10357] std.typecons.Nullable!(SysTime).Nullable.__ctor!() error instantiating | ||||
---|---|---|---|---|
| ||||
Posted in reply to Mario Kroeplin | http://d.puremagic.com/issues/show_bug.cgi?id=10357 Walter Bright <bugzilla@digitalmars.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |bugzilla@digitalmars.com Resolution| |FIXED -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
October 15, 2013 [Issue 10357] std.typecons.Nullable!(SysTime).Nullable.__ctor!() error instantiating | ||||
---|---|---|---|---|
| ||||
Posted in reply to Mario Kroeplin | http://d.puremagic.com/issues/show_bug.cgi?id=10357 --- Comment #4 from github-bugzilla@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: ------- |
October 15, 2013 [Issue 10357] std.typecons.Nullable!(SysTime).Nullable.__ctor!() error instantiating | ||||
---|---|---|---|---|
| ||||
Posted in reply to Mario Kroeplin | http://d.puremagic.com/issues/show_bug.cgi?id=10357 --- Comment #5 from github-bugzilla@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: ------- |
Copyright © 1999-2021 by the D Language Foundation