Skip to content
This repository was archived by the owner on May 23, 2024. It is now read-only.

Commit 9abf63d

Browse files
authored
Merge pull request #528 from JohnTitor/unsized-fn-params
Address the changes by rust-lang/rust#78152
2 parents fdaae30 + a57d066 commit 9abf63d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ices/67981.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![feature(unsized_locals)]
1+
#![feature(unsized_fn_params)]
22

33
fn main() {
44
let f: fn([u8]) = |_| {};

ices/68538.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![feature(unsized_locals)]
1+
#![feature(unsized_fn_params)]
22
#![crate_type = "lib"]
33

44
pub fn take_unsized_slice(s: [u8]) {

ices/68543.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![feature(unsized_locals)]
1+
#![feature(unsized_fn_params, unsized_locals)]
22
#![crate_type = "lib"]
33

44
use std::future::Future;

0 commit comments

Comments
 (0)