[Bug c++/70862] [concepts] adding a concept-constrained version of a variable template causes multiple definition assembler error

2021-11-11 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70862 Andrew Pinski changed: What|Removed |Added Target Milestone|--- |6.2 Resolution|---

[Bug c++/70862] [concepts] adding a concept-constrained version of a variable template causes multiple definition assembler error

2019-10-14 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70862 Jonathan Wakely changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug c++/70862] [concepts] adding a concept-constrained version of a variable template causes multiple definition assembler error

2019-09-26 Thread jeff.chapman.bugs at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70862 Jeff Chapman changed: What|Removed |Added CC||jeff.chapman.bugs at gmail dot com ---

[Bug c++/70862] [concepts] adding a concept-constrained version of a variable template causes multiple definition assembler error

2016-05-15 Thread tom at honermann dot net
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70862 --- Comment #4 from Tom Honermann --- (In reply to ryan.burn from comment #3) > It's a different bug. The test case from 70095 compiles fine with the trunk > from 20160428, but the above example won't. The example in bug 70095 comment 2 still

[Bug c++/70862] [concepts] adding a concept-constrained version of a variable template causes multiple definition assembler error

2016-05-15 Thread ryan.burn at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70862 --- Comment #3 from ryan.burn at gmail dot com --- It's a different bug. The test case from 70095 compiles fine with the trunk from 20160428, but the above example won't.

[Bug c++/70862] [concepts] adding a concept-constrained version of a variable template causes multiple definition assembler error

2016-05-15 Thread tom at honermann dot net
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70862 Tom Honermann changed: What|Removed |Added CC||tom at honermann dot net --- Comment #2

[Bug c++/70862] [concepts] adding a concept-constrained version of a variable template causes multiple definition assembler error

2016-04-28 Thread ryan.burn at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70862 --- Comment #1 from ryan.burn at gmail dot com --- Simpler reproduction: template concept bool C = true; template constexpr bool a = false; template requires C constexpr bool a = true; template requires a void f(Tx...) { } int main()