t. */
result = perform_direct_initialization_if_possible (type, expr,
c_cast_p, complain);
+ /* P1975 allows static_cast<Aggr>(42), as well as static_cast<T[5]>(42),
+ which initialize the first element of the aggregate. We need to handle
+ the array case specifically. */
+ if (result == NULL_TREE
+ && cxx_dialect >= cxx20
+ && TREE_CODE (type) == ARRAY_TYPE)
+ {
+ /* Create { EXPR } and perform direct-initialization from it. */
+ tree e = build_constructor_single (init_list_type_node, NULL_TREE, expr);
+ CONSTRUCTOR_IS_DIRECT_INIT (e) = true;
+ CONSTRUCTOR_IS_PAREN_INIT (e) = true;
+ result = perform_direct_initialization_if_possible (type, e, c_cast_p,
+ complain);
+ }
if (result)
{
if (processing_template_decl)
--- /dev/null
+// PR c++/92812
+// P1975R0
+// { dg-do run { target c++20 } }
+// { dg-options "-Wall -Wextra" }
+
+struct Aggr { int x; int y; };
+struct Base { int i; Base(int i_) : i{i_} { } };
+struct BaseAggr : Base { };
+struct X { };
+struct AggrSDM { static X x; int i; int j; };
+
+int
+main ()
+{
+ Aggr a = static_cast<Aggr>(42); // { dg-warning "missing initializer" }
+ if (a.x != 42 || a.y != 0)
+ __builtin_abort ();
+ BaseAggr b = static_cast<BaseAggr>(42);
+ if (b.i != 42)
+ __builtin_abort ();
+ AggrSDM s = static_cast<AggrSDM>(42); // { dg-warning "missing initializer" }
+ if (s.i != 42 || s.j != 0)
+ __builtin_abort ();
+}
--- /dev/null
+// PR c++/92812
+// P1975R0
+// { dg-do compile { target c++20 } }
+
+// In both cases the reference declarations lifetime-extend the array
+// temporary.
+int (&&r)[3] = static_cast<int[3]>(42);
+int (&&r2)[1] = static_cast<int[]>(42);
+
+// Make sure we've lifetime-extended.
+// { dg-final { scan-assembler "_ZGR1r_" } }
+// { dg-final { scan-assembler "_ZGR2r2_" } }
+
+// Narrowing is probably OK here.
+int (&&r3)[1] = static_cast<int[1]>(1.3);
--- /dev/null
+// PR c++/92812
+// P1975R0
+// { dg-do run { target c++20 } }
+
+int (&&r)[3] = static_cast<int[3]>(42);
+int (&&r2)[1] = static_cast<int[]>(42);
+
+int
+main ()
+{
+ if (r[0] != 42 || r[1] != 0 || r[2] != 0)
+ __builtin_abort ();
+ if (r2[0] != 42 || sizeof (r2) != sizeof (int))
+ __builtin_abort ();
+}
--- /dev/null
+// PR c++/92812
+// P1975R0
+// { dg-do compile { target c++20 } }
+
+struct S1 {
+ int i;
+ int j;
+};
+
+struct S2 {
+ S1 s[4];
+};
+
+struct S3 {
+ S2 s2;
+};
+
+void
+f ()
+{
+ // Brace elision not allowed.
+ auto s3 = static_cast<S3>(1); // { dg-error "could not convert" }
+}
--- /dev/null
+// PR c++/92812
+// P1975R0
+// { dg-do compile { target c++20 } }
+// Test we don't lifetime-extend the int temporary.
+
+struct A { const int &r; };
+A a(42);
+auto a2 = static_cast<A>(42);
+
+// { dg-final { scan-assembler-not "_ZGR" } }
--- /dev/null
+// PR c++/92812
+// P1975R0
+// { dg-do compile { target c++20 } }
+
+struct A { int i; };
+struct A2 { int i; A2(int); };
+struct A3 { int i; explicit A3(int); };
+
+struct X { A a; };
+auto x = static_cast<X>(42); // { dg-error "could not convert" }
+
+struct X2 { A2 a; };
+auto x2 = static_cast<X2>(42);
+
+struct X3 { A3 a; };
+// Aggregate-initialization copy-initializes, so the explicit ctor
+// isn't considered.
+auto x3 = static_cast<X3>(42); // { dg-error "could not convert" }
+
+struct NonAggr { int i; virtual void foo (); };
+auto x4 = static_cast<NonAggr>(42); // { dg-error "no matching" }