mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
15 lines
308 B
Rust
15 lines
308 B
Rust
// Check that we don't render host effect parameters & arguments.
|
|
|
|
#![crate_name = "foo"]
|
|
#![feature(effects, const_trait_impl)]
|
|
|
|
#[const_trait]
|
|
pub trait Tr {
|
|
fn f();
|
|
}
|
|
|
|
// @has foo/fn.g.html
|
|
// @has - '//pre[@class="rust item-decl"]' 'pub const fn g<T: Tr>()'
|
|
/// foo
|
|
pub const fn g<T: ~const Tr>() {}
|