about summary refs log tree commit diff
path: root/tests/run-make/fat-then-thin-lto/lib.rs
blob: c675dcb6e8a847b3bb373591388be37d5a5276bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#![allow(internal_features)]
#![feature(no_core, lang_items)]
#![no_core]
#![crate_type = "rlib"]

#[lang = "pointee_sized"]
trait PointeeSized {}
#[lang = "meta_sized"]
trait MetaSized: PointeeSized {}
#[lang = "sized"]
trait Sized: MetaSized {}

pub fn foo() {}