Files
rust/tests/incremental/unrecoverable_query.rs
Zalathar 793c646b7b Migrate bfail/build-pass tests to bpass (1/2)
This is the subset of incremental tests that should continue to use `bpass`
even after `cpass` is supported, because they (presumably) involve codegen.
2026-04-22 12:28:25 +10:00

43 lines
638 B
Rust

// If it is impossible to find query arguments just from the hash
// compiler should treat the node as red
// In this test prior to fixing compiler was having problems figuring out
// drop impl for T inside of m
//@ revisions: bpass1 bpass2
//@ compile-flags: --crate-type=lib
//@ ignore-backends: gcc
#![allow(dead_code)]
pub trait P {
type A;
}
struct S;
impl P for S {
type A = C;
}
struct T<D: P>(D::A, Z<D>);
struct Z<D: P>(D::A, String);
impl<D: P> T<D> {
pub fn i() -> Self {
loop {}
}
}
enum C {
#[cfg(bpass1)]
Up(()),
#[cfg(bpass2)]
Lorry(()),
}
pub fn m() {
T::<S>::i();
}