File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ main: () = {
61
61
f := :() = {
62
62
using ns::f;
63
63
static_assert(t().f() == 0);
64
- static_assert(u().f() == 1);
64
+ // static_assert(u().f() == 1);
65
65
};
66
66
_ = f;
67
67
}
@@ -79,11 +79,11 @@ main: () = {
79
79
using ns::f;
80
80
_ = :() = {
81
81
static_assert(t().f() == 0);
82
- static_assert(u().f() == 1);
82
+ // static_assert(u().f() == 1);
83
83
};
84
84
{
85
85
static_assert(t().f() == 0);
86
- static_assert(u().f() == 1);
86
+ // static_assert(u().f() == 1);
87
87
}
88
88
};
89
89
_ = f;
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ cpp2::in<identity> f = identity();
126
126
auto f {[]() -> void {
127
127
using ns::f;
128
128
static_assert (CPP2_UFCS (f)(t ()) == 0 );
129
- static_assert (CPP2_UFCS (f)( u ()) == 1 );
129
+ // static_assert(u().f( ) == 1);
130
130
}};
131
131
static_cast <void >(std::move (f));
132
132
}
@@ -144,11 +144,11 @@ cpp2::in<identity> f = identity();
144
144
using ns::f;
145
145
static_cast <void >([]() -> void {
146
146
static_assert (CPP2_UFCS (f)(t ()) == 0 );
147
- static_assert (CPP2_UFCS (f)( u ()) == 1 );
147
+ // static_assert(u().f( ) == 1);
148
148
});
149
149
{
150
150
static_assert (CPP2_UFCS (f)(t ()) == 0 );
151
- static_assert (CPP2_UFCS (f)( u ()) == 1 );
151
+ // static_assert(u().f( ) == 1);
152
152
}
153
153
}};
154
154
static_cast <void >(std::move (f));
You can’t perform that action at this time.
0 commit comments