Skip to content

Commit

Permalink
[debuginfo] Update src/test/debuginfo/mutex.rs for new cpp-like enum …
Browse files Browse the repository at this point in the history
…debuginfo encoding.
  • Loading branch information
michaelwoerister committed Aug 12, 2022
1 parent ee634fb commit 6d030a5
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/test/debuginfo/mutex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,20 @@
// cdb-check: [<Raw View>] [Type: core::cell::UnsafeCell<i32>]

//
// cdb-command:dx lock,d
// cdb-check:lock,d : Ok [Type: enum2$<core::result::Result<std::sync::mutex::MutexGuard<i32>,enum2$<std::sync::poison::TryLockError<std::sync::mutex::MutexGuard<i32> >, 0, 1, Poisoned> > >]
// cdb-check: [variant] : Ok
// cdb-command:dx _lock,d
// cdb-check:_lock,d : Ok [Type: enum2$<core::result::Result<std::sync::mutex::MutexGuard<i32>,enum2$<std::sync::poison::TryLockError<std::sync::mutex::MutexGuard<i32> > > > >]
// cdb-check: [...] __0 [Type: std::sync::mutex::MutexGuard<i32>]

use std::sync::Mutex;

#[allow(unused_variables)]
fn main() {
let m = Mutex::new(0);
let lock = m.try_lock();
let _lock = m.try_lock();

println!("this line avoids an `Ambiguous symbol error` while setting the breakpoint");

zzz(); // #break
}

#[inline(never)]
fn zzz() {}

0 comments on commit 6d030a5

Please sign in to comment.