Commit fa237d91 by Matthew Beliveau Committed by Marek Polacek

re PR c++/87250 (Internal compiler error with -Os -fsyntax-only)

	PR c++/87250
	* g++.dg/cpp0x/pr87250.C: New test.

From-SVN: r272129
parent 620adbec
2019-06-10 Matthew Beliveau <mbelivea@redhat.com>
PR c++/87250
* g++.dg/cpp0x/pr87250.C: New test.
2019-06-10 Jakub Jelinek <jakub@redhat.com> 2019-06-10 Jakub Jelinek <jakub@redhat.com>
PR testsuite/90772 PR testsuite/90772
......
// PR c++/87250
// { dg-do compile { target c++11 } }
// { dg-options "-Os -fsyntax-only" }
template <typename> struct a {
constexpr a(int) {}
};
template <typename> struct atomic;
template <> struct atomic<bool> {
a<bool> b;
constexpr atomic(bool c) : b(c) {}
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment