File tree 1 file changed +4
-4
lines changed 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -270,9 +270,9 @@ issue_857_6: @struct type = {
270
270
271
271
issue_857_4: @struct type = {
272
272
f: std::add_pointer_t<()->int>;
273
- g: std::add_pointer_t<(_ :int)->int>;
273
+ g: std::add_pointer_t<(x :int)->int>;
274
274
mf: std::move_only_function<()->int>;
275
- mg: std::move_only_function<(_ :int)->int>;
275
+ mg: std::move_only_function<(x :int)->int>;
276
276
// h0: (move this) = _ = mf();
277
277
// h1: (move this) = _ = this.mf();
278
278
// h2: (move this, that) = _ = that.mf();
@@ -770,7 +770,7 @@ issue_884: () = {
770
770
issue_888_0: (copy r: std::string, copy size: int) = {
771
771
_ = r.size();
772
772
}
773
- issue_888_1: (copy _: std::string, copy size: std::move_only_function<(_ :int)->int>) = {
773
+ issue_888_1: (copy _: std::string, copy size: std::move_only_function<(x :int)->int>) = {
774
774
_ = 0.size();
775
775
}
776
776
@@ -787,7 +787,7 @@ issue_962: (s: ::std::string) = {
787
787
788
788
draw: () = {
789
789
pos := 0;
790
- vertex: std::move_only_function<(_ :int)->int> = ();
790
+ vertex: std::move_only_function<(x :int)->int> = ();
791
791
_ = (pos).vertex();
792
792
}
793
793
You can’t perform that action at this time.
0 commit comments