Skip to content

Commit 5069915

Browse files
committed
test: update test results
1 parent 9226b2a commit 5069915

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

regression-tests/test-results/pure2-bugfix-for-ufcs-name-lookup.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ namespace ns {
4444
} // namespace ns
4545

4646
class v {
47-
public: static constexpr auto f = []([[maybe_unused]] auto const& unnamed_param_1) mutable -> auto { return 0; };
47+
public: static constexpr auto f = []([[maybe_unused]] auto const& unnamed_param_1) -> auto { return 0; };
4848
public: [[nodiscard]] static auto g(auto const& i) -> auto;
4949
};
5050

regression-tests/test-results/pure2-type-and-namespace-aliases.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ class myclass3 {
7878
public: static constexpr auto i0 = std::array{0};
7979
public: static constexpr auto i1 = i0;
8080
public: static constexpr auto i3 = i0;
81-
public: static constexpr auto i7 = []() mutable -> auto { return 0; };
81+
public: static constexpr auto i7 = []() -> auto { return 0; };
8282

8383
// Defined out of line.
8484
public: static const myclass3 o2;
@@ -130,8 +130,8 @@ auto main() -> int{
130130
}
131131

132132
#line 47 "pure2-type-and-namespace-aliases.cpp2"
133-
inline CPP2_CONSTEXPR myclass3 myclass3::o2 = myclass3();
134-
inline CPP2_CONSTEXPR myclass3 myclass3::o4 = o2;
135-
inline CPP2_CONSTEXPR myclass4 myclass3::o5 = myclass4();
136-
inline CPP2_CONSTEXPR myclass5 myclass3::o6 = myclass5();
133+
inline CPP2_CONSTEXPR myclass3 myclass3::o2{ myclass3() };
134+
inline CPP2_CONSTEXPR myclass3 myclass3::o4{ o2 };
135+
inline CPP2_CONSTEXPR myclass4 myclass3::o5{ myclass4() };
136+
inline CPP2_CONSTEXPR myclass5 myclass3::o6{ myclass5() };
137137

0 commit comments

Comments
 (0)