about summary refs log tree commit diff
path: root/tests/run-make/rustdoc-target-modifiers/d.rs
blob: 6cbff06079ed26762050431c888e2065cd5d2f4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#![allow(internal_features)]
#![feature(lang_items, no_core)]
#![no_core]

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

pub fn f() {}