]> git.lizzy.rs Git - rust.git/blob - tests/ui/kinds-in-metadata.rs
Rollup merge of #106625 - Swatinem:ref/cov6, r=nagisa
[rust.git] / tests / ui / kinds-in-metadata.rs
1 // run-pass
2 // aux-build:kinds_in_metadata.rs
3
4 // pretty-expanded FIXME #23616
5
6 /* Any copyright is dedicated to the Public Domain.
7  * http://creativecommons.org/publicdomain/zero/1.0/ */
8
9 // Tests that metadata serialization works for the `Copy` kind.
10
11 extern crate kinds_in_metadata;
12
13 use kinds_in_metadata::f;
14
15 pub fn main() {
16     f::<isize>();
17 }