Thread overview
[Issue 15665] Templated scope class with constructor don't compile
Feb 10, 2016
Walter Bright
February 10, 2016
https://issues.dlang.org/show_bug.cgi?id=15665

Walter Bright <bugzilla@digitalmars.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bugzilla@digitalmars.com

--- Comment #1 from Walter Bright <bugzilla@digitalmars.com> ---
https://github.com/D-Programming-Language/dmd/pull/5432

--
February 10, 2016
https://issues.dlang.org/show_bug.cgi?id=15665

--- Comment #2 from github-bugzilla@puremagic.com ---
Commits pushed to master at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/4a38b1d326ef8e48289309863f35d36c6d9c4e20 Fix issue #15665: Templated scope class with constructor doesn't compile

While instantiating a template, FuncDeclaration::semantic3 will call into TypeFunction::semantic, but the flags SCOPEctor is only set during CtorDeclaration::semantic.

https://github.com/D-Programming-Language/dmd/commit/c32ccb7c12c53d230d722d4e9b2414b38c3097bf Merge pull request #5432 from mathias-lang-sociomantic/fix-15665

Fix issue #15665: Templated scope class with constructor doesn't compile

--
February 10, 2016
https://issues.dlang.org/show_bug.cgi?id=15665

github-bugzilla@puremagic.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--
March 02, 2016
https://issues.dlang.org/show_bug.cgi?id=15665

--- Comment #3 from github-bugzilla@puremagic.com ---
Commits pushed to stable at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/e8c4f5ed9124a3e18081699789ad5cd6efc7aa94 Fix issue #15665: Templated scope class with constructor doesn't compile

While instantiating a template, FuncDeclaration::semantic3 will call into TypeFunction::semantic, but the flags SCOPEctor is only set during CtorDeclaration::semantic.

https://github.com/D-Programming-Language/dmd/commit/83be084357b5529d3d9fa2338c8bffb6fa3862c8 Merge pull request #5493 from Dicebot/pick-15665

Cherry-pick fix for issue 15665 into stable

--
March 14, 2016
https://issues.dlang.org/show_bug.cgi?id=15665

--- Comment #4 from github-bugzilla@puremagic.com ---
Commits pushed to master at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/e8c4f5ed9124a3e18081699789ad5cd6efc7aa94 Fix issue #15665: Templated scope class with constructor doesn't compile

https://github.com/D-Programming-Language/dmd/commit/83be084357b5529d3d9fa2338c8bffb6fa3862c8 Merge pull request #5493 from Dicebot/pick-15665

--