https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96592
John changed:
What|Removed |Added
CC||johnilacqua at hotmail dot com
--- Comment #1
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92522
--- Comment #2 from John ---
(In reply to Richard Biener from comment #1)
> Isn't this undefined since you require 'test' to be constructed before
> 'sample'
> but the order of global CTORs is undefined between translation units?
>
> IIRC there'
Priority: P3
Component: libstdc++
Assignee: unassigned at gcc dot gnu.org
Reporter: johnilacqua at hotmail dot com
Target Milestone: ---
Minimal example:
//sample.cc
#include
std::deque test;
//main.cc
#include
extern std::deque test;
static const auto sample