rust/tests/ui/cross-crate/auxiliary/kinds_in_metadata.rs
Trevor Gross 3b57db4d87 Give some UI tests more apropriate names
Prepare for rework done by the rest of RUST-142440.

Co-authored-by: Kivooeo <Kivooeo123@gmail.com>
2025-07-01 16:26:56 +05:00

9 lines
218 B
Rust

/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
// Tests that metadata serialization works for the `Copy` kind.
#![crate_type="lib"]
pub fn f<T:Copy>() {}