mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
edafbaffb2
- Either explicitly annotate `let x: () = expr;` where `x` has unit type, or remove the unit binding to leave only `expr;` instead. - Fix disjoint-capture-in-same-closure test
33 lines
844 B
Rust
33 lines
844 B
Rust
// build-fail
|
|
|
|
fn assert_zst<T>() {
|
|
struct F<T>(T);
|
|
impl<T> F<T> {
|
|
const V: () = assert!(std::mem::size_of::<T>() == 0);
|
|
//~^ ERROR: evaluation of `assert_zst::F::<u32>::V` failed [E0080]
|
|
//~| NOTE: in this expansion of assert!
|
|
//~| NOTE: the evaluated program panicked
|
|
//~| ERROR: evaluation of `assert_zst::F::<i32>::V` failed [E0080]
|
|
//~| NOTE: in this expansion of assert!
|
|
//~| NOTE: the evaluated program panicked
|
|
}
|
|
F::<T>::V;
|
|
}
|
|
|
|
fn foo<U>() {
|
|
assert_zst::<U>()
|
|
//~^ NOTE: the above error was encountered while instantiating `fn assert_zst::<u32>`
|
|
//~| NOTE: the above error was encountered while instantiating `fn assert_zst::<i32>`
|
|
}
|
|
|
|
|
|
fn bar<V>() {
|
|
foo::<V>()
|
|
}
|
|
|
|
fn main() {
|
|
bar::<()>();
|
|
bar::<u32>();
|
|
bar::<u32>();
|
|
bar::<i32>();
|
|
}
|