aboutsummaryrefslogtreecommitdiff
path: root/tests/ui/generic_fn.rs
blob: cb9be03e47495289bc59fb8483330df84f9bb9f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![cfg_attr(feature = "used_linker", feature(used_with_arg))]

use linkme::distributed_slice;

#[distributed_slice]
pub static SLICES: [fn()] = [..];

#[distributed_slice(SLICES)]
fn type_param<T>() {}

#[distributed_slice(SLICES)]
fn const_param<const N: usize>() {}

fn main() {}