Files
100-exercises-to-learn-rust/exercises/04_traits/08_sized/src/lib.rs
2024-05-23 15:29:42 +02:00

8 lines
264 B
Rust

pub fn example() {
// Trying to get the size of a str (or any other DST)
// via `std::mem::size_of` will result in a compile-time error.
//
// TODO: Comment out the following line and move on to the next exercise.
std::mem::size_of::<str>();
}