https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78217
Andrew Pinski changed:
What|Removed |Added
CC||heiko at hexco dot de
--- Comment #6 fro
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78217
Andrew Pinski changed:
What|Removed |Added
CC||lebedev.ri at gmail dot com
--- Comment
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78217
Andrew Pinski changed:
What|Removed |Added
Ever confirmed|0 |1
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78217
--- Comment #3 from Andrew Pinski ---
Confirmed.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78217
Andrew Pinski changed:
What|Removed |Added
CC||ppluzhnikov at google dot com
--- Commen
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78217
--- Comment #1 from Jakub Jelinek ---
Similar testcase without auto, but in a template:
template
int foo ()
{
extern int a;
extern T a;
return a;
}
template
int bar ()
{
extern int b;
extern T b;
return b;
}
int c = foo ();
int d