]> git.lizzy.rs Git - rust.git/blob - src/test/ui/kinds-in-metadata.rs
Merge commit '63734fcdd718cca089f84c42f3a42c0096cfd431' into sync_cg_clif-2022-05-15
[rust.git] / src / test / 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 }