2024-02-16 20:02:50 +00:00
|
|
|
//@ no-prefer-dynamic
|
2016-04-26 10:51:14 -07:00
|
|
|
|
|
|
|
|
#![crate_type = "rlib"]
|
2020-09-07 10:45:20 +02:00
|
|
|
#![no_std]
|
2017-06-03 14:54:08 -07:00
|
|
|
|
2020-09-07 10:45:20 +02:00
|
|
|
extern crate alloc;
|
|
|
|
|
use alloc::fmt;
|
2017-06-03 14:54:08 -07:00
|
|
|
|
2025-06-02 10:11:10 +02:00
|
|
|
pub fn work_with(p: &dyn fmt::Debug) {
|
2017-06-03 14:54:08 -07:00
|
|
|
drop(p);
|
|
|
|
|
}
|