]> git.proxmox.com Git - rustc.git/blame - src/test/ui/regions/regions-outlives-scalar.rs
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / regions / regions-outlives-scalar.rs
CommitLineData
e9174d1e
SL
1// Test that scalar values outlive all regions.
2// Rule OutlivesScalar from RFC 1214.
d9579d0f 3
29967ef6 4// check-pass
e9174d1e 5#![allow(dead_code)]
1a4d82fc 6
e9174d1e
SL
7struct Foo<'a> {
8 x: &'a i32,
9 y: &'static i32
223e47cc 10}
e9174d1e 11
a1dfa0c6
XL
12
13fn main() { }