1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
//@ check-fail
//! Reject lifetime extensions.
#![feature(transmutability, core_intrinsics)]
use std::mem::{Assume, TransmuteFrom};
unsafe fn transmute<Src, Dst>(src: Src) -> Dst
where
Dst: TransmuteFrom<Src, { Assume::SAFETY }>,
{
core::intrinsics::transmute_unchecked(src)
}
mod bare {
use super::*;
fn extend_bare<'a>(src: &'a u8) -> &'static u8 {
unsafe { transmute(src) } //~ ERROR lifetime may not live long enough
}
}
mod nested {
use super::*;
fn extend_nested<'a>(src: &'a &'a u8) -> &'a &'static u8 {
unsafe { transmute(src) } //~ ERROR lifetime may not live long enough
}
}
mod tuple {
use super::*;
fn extend_unit<'a>(src: (&'a u8,)) -> (&'static u8,) {
unsafe { transmute(src) } //~ ERROR lifetime may not live long enough
}
fn extend_pair<'a>(src: (&'a u8, u8)) -> (&'static u8, u8) {
unsafe { transmute(src) } //~ ERROR lifetime may not live long enough
}
}
mod r#struct {
use super::*;
struct Struct<'a>(&'a u8);
fn extend_struct<'a>(src: Struct<'a>) -> Struct<'static> {
unsafe { transmute(src) } //~ ERROR lifetime may not live long enough
}
}
mod r#enum {
use super::*;
enum Single<'a> {
A(&'a u8),
}
fn extend_single<'a>(src: Single<'a>) -> Single<'static> {
unsafe { transmute(src) } //~ ERROR lifetime may not live long enough
}
enum Multi<'a> {
A(&'a u8),
B,
C,
}
fn extend_multi<'a>(src: Multi<'a>) -> Multi<'static> {
unsafe { transmute(src) } //~ ERROR lifetime may not live long enough
}
}
mod hrtb {
use super::*;
fn call_extend_hrtb<'a>(src: &'a u8) -> &'static u8 {
unsafe { extend_hrtb(src) } //~ ERROR borrowed data escapes outside of function
}
unsafe fn extend_hrtb<'a>(src: &'a u8) -> &'static u8
where
for<'b> &'b u8: TransmuteFrom<&'a u8>,
{
core::intrinsics::transmute_unchecked(src)
}
}
fn main() {}
|