update type names in debuginfo tests

This commit is contained in:
joboet 2025-11-28 14:41:54 +01:00
parent 9c6e0f6f57
commit c22b819952
No known key found for this signature in database
GPG key ID: 704E0149B0194B3C

View file

@ -9,12 +9,12 @@
//@ cdb-command:g
//
//@ cdb-command:dx join_handle,d
//@ cdb-check:join_handle,d [Type: std::thread::JoinHandle<tuple$<> >]
//@ cdb-check: [...] __0 [Type: std::thread::JoinInner<tuple$<> >]
//@ cdb-check:join_handle,d [Type: std::thread::join_handle::JoinHandle<tuple$<> >]
//@ cdb-check: [...] __0 [Type: std::thread::lifecycle::JoinInner<tuple$<> >]
//
//@ cdb-command:dx t,d
//@ cdb-check:t,d : [...] [Type: std::thread::Thread *]
//@ cdb-check:[...] inner [...][Type: core::pin::Pin<alloc::sync::Arc<std::thread::Inner,std::alloc::System> >]
//@ cdb-check:t,d : [...] [Type: std::thread::thread::Thread *]
//@ cdb-check:[...] inner [...][Type: core::pin::Pin<alloc::sync::Arc<std::thread::thread::Inner,std::alloc::System> >]
use std::thread;