Skip to content

Commit

Permalink
Add 82455
Browse files Browse the repository at this point in the history
  • Loading branch information
fanninpm committed Feb 26, 2021
1 parent 80c0c06 commit d4e9f0f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions ices/82455.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
fn map<T>(_: fn() -> Option<&'static T>) -> Option<T> {
None
}

fn value() -> Option<&'static _> {
Option::<&'static u8>::None
}

const _: Option<_> = {

let _: Option<_> = map(value);
};

0 comments on commit d4e9f0f

Please sign in to comment.