rust/tests/ui/generics/post_monomorphization_error_backtrace.rs
许杰友 Jieyou Xu (Joe) edafbaffb2
Adjust UI tests for unit_bindings
- 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
2023-06-12 20:24:48 +08:00

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>();
}