summaryrefslogtreecommitdiffstats
path: root/src/test/ui/builtin-superkinds/builtin-superkinds-simple2.rs
blob: 8d247715784444cedddc70f7e12a438942b419fa (plain)
1
2
3
4
5
6
7
8
9
10
// run-pass
// Simple test case of implementing a trait with super-builtin-kinds.

// pretty-expanded FIXME #23616

trait Foo : Send { }

impl Foo for isize { }

pub fn main() { }