diff --git a/libstdc++-v3/testsuite/20_util/optional/77288.cc b/libstdc++-v3/testsuite/20_util/optional/77288.cc index eafafb7..0df74a9 100644 --- a/libstdc++-v3/testsuite/20_util/optional/77288.cc +++ b/libstdc++-v3/testsuite/20_util/optional/77288.cc @@ -18,7 +18,6 @@ // with this library; see the file COPYING3. If not see // . -#include #include #include @@ -28,8 +27,8 @@ using std::optional; void test01() { - optional> nested_element; - optional element = {}; + optional> nested_element; + optional element = {}; nested_element = element; VERIFY(nested_element); }