I was curious if our auto(x) works in contexts like bit-field width
and similar. It appears that it does. Might be worth adding a test
for it.
gcc/testsuite/ChangeLog:
* g++.dg/cpp23/auto-fncast10.C: New test.
--- /dev/null
+// { dg-do compile { target c++23 } }
+
+struct S {
+ int i1 : auto(12);
+ int i2 : auto{12};
+ static constexpr auto x = auto(12);
+ static constexpr auto y = auto{12};
+};
+
+struct R {
+ int i;
+};
+
+static constexpr R r1 = { auto(23) };
+static constexpr R r2 = { auto{23} };
+enum E { X = auto(12), Y = auto{1u} };
+static_assert (auto(true));
+static_assert (auto{true});