Skip to content

Commit 858fcd4

Browse files
committed
test: regenerate new test case
1 parent 2d2b3b6 commit 858fcd4

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

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

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,19 +81,17 @@ class myclass3 {
8181
public: static const myclass3 v4;// OK: Doesn't use the Cpp2 placeholder type.
8282
public: static const myclass4 v5;// OK: Doesn't use the Cpp2 placeholder type.
8383
public: static const myclass5 v6;// OK: Doesn't use the Cpp2 placeholder type.
84-
public: static constexpr auto v7 = []() -> auto { return 0; };
84+
public: static constexpr auto v7 = []() mutable -> auto { return 0; };
8585
};
8686

8787
class myclass4 {};
8888

8989
template<typename T> class myclass6 {
90-
public: template<typename U>
91-
CPP2_REQUIRES_ (true)
9290
#line 53 "pure2-type-and-namespace-aliases.cpp2"
93-
static constexpr auto v = 0;
91+
public: template<typename U>
92+
CPP2_REQUIRES_ (true) static constexpr auto v = 0;
9493
};
9594

96-
9795
//=== Cpp2 function definitions =================================================
9896

9997
#line 1 "pure2-type-and-namespace-aliases.cpp2"

0 commit comments

Comments
 (0)