rust/tests/target/trait.rs

82 lines
1.4 KiB
Rust
Raw Normal View History

2015-05-04 00:12:39 +02:00
// Test traits
trait Foo {
fn bar(x: i32) -> Baz<U> {
Baz::new()
}
fn baz(a: AAAAAAAAAAAAAAAAAAAAAA, b: BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB) -> RetType;
2017-06-12 06:01:41 +02:00
fn foo(
a: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA, // Another comment
b: BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB,
) -> RetType; // Some comment
2015-05-04 00:12:39 +02:00
fn baz(&mut self) -> i32;
fn increment(&mut self, x: i32);
2017-06-12 06:01:41 +02:00
fn read(&mut self, x: BufReader<R> /* Used to be MemReader */)
where
R: Read;
2015-05-04 00:12:39 +02:00
}
2015-07-19 14:33:02 +02:00
pub trait WriteMessage {
fn write_message(&mut self, &FrontendMessage) -> io::Result<()>;
}
trait Runnable {
fn handler(self: &Runnable);
}
trait TraitWithExpr {
fn fn_with_expr(x: [i32; 1]);
}
trait Test {
fn read_struct<T, F>(&mut self, s_name: &str, len: usize, f: F) -> Result<T, Self::Error>
2017-06-12 06:01:41 +02:00
where
F: FnOnce(&mut Self) -> Result<T, Self::Error>;
}
trait T {}
2016-03-15 03:05:20 +01:00
trait Foo {
type Bar: Baz;
2017-07-27 23:27:34 +02:00
type Inner: Foo = Box<Foo>;
2016-03-15 03:05:20 +01:00
}
trait ConstCheck<T>: Foo
2017-06-12 06:01:41 +02:00
where
T: Baz,
2016-03-15 03:05:20 +01:00
{
const J: i32;
}
2017-06-12 06:01:41 +02:00
trait Tttttttttttttttttttttttttttttttttttttttttttttttttttttttttt<T>
where
T: Foo,
2017-06-12 06:01:41 +02:00
{
}
trait Ttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt<T>
2017-06-12 06:01:41 +02:00
where
T: Foo,
{
}
trait FooBar<T>
: Tttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt
2017-06-12 06:01:41 +02:00
where
J: Bar,
{
fn test();
}
trait WhereList<T, J>
2017-06-12 06:01:41 +02:00
where
T: Foo,
J: Bar,
{
}