rust/tests/target/paths.rs

29 lines
726 B
Rust
Raw Normal View History

// rustfmt-normalize_comments: true
2015-08-14 14:09:19 +02:00
fn main() {
2017-06-13 04:49:47 +02:00
let constellation_chan =
Constellation::<layout::layout_task::LayoutTask, script::script_task::ScriptTask>::start(
compositor_proxy,
resource_task,
image_cache_task,
font_cache_task,
time_profiler_chan,
mem_profiler_chan,
devtools_chan,
storage_task,
supports_clipboard,
);
2015-08-14 14:09:19 +02:00
2017-06-24 12:49:01 +02:00
Quux::<
ParamOne, // Comment 1
ParamTwo, // Comment 2
>::some_func();
<*mut JSObject>::relocate(entry);
let x: Foo<A>;
let x: Foo/*::*/<A>;
2015-08-14 14:09:19 +02:00
}
fn op(foo: Bar, key: &[u8], upd: Fn(Option<&memcache::Item>, Baz) -> Result) -> MapResult {}