mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
27 lines
614 B
Rust
27 lines
614 B
Rust
fn f<T>() {
|
|
extern "C" {
|
|
static a: *const T;
|
|
//~^ ERROR can't use generic parameters from outer function
|
|
}
|
|
}
|
|
|
|
fn g<T: Default>() {
|
|
static a: *const T = Default::default();
|
|
//~^ ERROR can't use generic parameters from outer function
|
|
}
|
|
|
|
fn h<const N: usize>() {
|
|
extern "C" {
|
|
static a: [u8; N];
|
|
//~^ ERROR can't use generic parameters from outer function
|
|
}
|
|
}
|
|
|
|
fn i<const N: usize>() {
|
|
static a: [u8; N] = [0; N];
|
|
//~^ ERROR can't use generic parameters from outer function
|
|
//~| ERROR can't use generic parameters from outer function
|
|
}
|
|
|
|
fn main() {}
|