mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-11 08:05:12 +00:00
11 lines
262 B
Rust
11 lines
262 B
Rust
//@ check-pass
|
|
//@ aux-build:const_generic_issues_lib.rs
|
|
#![feature(generic_const_exprs)]
|
|
#![allow(incomplete_features)]
|
|
extern crate const_generic_issues_lib as lib2;
|
|
fn unused_function(
|
|
_: <lib2::GenericType<42> as lib2::TypeFn>::Output
|
|
) {}
|
|
|
|
fn main() {}
|