Skip to content

Commit

Permalink
test: update test results
Browse files Browse the repository at this point in the history
  • Loading branch information
JohelEGP committed Oct 1, 2024
1 parent 9226b2a commit 5069915
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ namespace ns {
} // namespace ns

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class myclass3 {
public: static constexpr auto i0 = std::array{0};
public: static constexpr auto i1 = i0;
public: static constexpr auto i3 = i0;
public: static constexpr auto i7 = []() mutable -> auto { return 0; };
public: static constexpr auto i7 = []() -> auto { return 0; };

// Defined out of line.
public: static const myclass3 o2;
Expand Down Expand Up @@ -130,8 +130,8 @@ auto main() -> int{
}

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

0 comments on commit 5069915

Please sign in to comment.