Delete unused ui/auxiliary crates
This commit is contained in:
parent
cb31a009e3
commit
9b33cea260
3 changed files with 0 additions and 61 deletions
|
|
@ -1,9 +0,0 @@
|
|||
#![crate_type = "lib"]
|
||||
#![crate_name = "default_param_test"]
|
||||
#![feature(default_type_parameter_fallback)]
|
||||
|
||||
use std::marker::PhantomData;
|
||||
|
||||
pub struct Foo<A, B>(PhantomData<(A, B)>);
|
||||
|
||||
pub fn bleh<A=i32, X=char>() -> Foo<A, X> { Foo(PhantomData) }
|
||||
|
|
@ -1,26 +0,0 @@
|
|||
//@ edition:2015
|
||||
|
||||
#[macro_export]
|
||||
macro_rules! produces_async {
|
||||
() => (pub fn async() {})
|
||||
}
|
||||
|
||||
#[macro_export]
|
||||
macro_rules! produces_async_raw {
|
||||
() => (pub fn r#async() {})
|
||||
}
|
||||
|
||||
#[macro_export]
|
||||
macro_rules! consumes_async {
|
||||
(async) => (1)
|
||||
}
|
||||
|
||||
#[macro_export]
|
||||
macro_rules! consumes_async_raw {
|
||||
(r#async) => (1)
|
||||
}
|
||||
|
||||
#[macro_export]
|
||||
macro_rules! passes_ident {
|
||||
($i: ident) => ($i)
|
||||
}
|
||||
|
|
@ -1,26 +0,0 @@
|
|||
//@ edition:2018
|
||||
|
||||
#[macro_export]
|
||||
macro_rules! produces_async {
|
||||
() => (pub fn async() {})
|
||||
}
|
||||
|
||||
#[macro_export]
|
||||
macro_rules! produces_async_raw {
|
||||
() => (pub fn r#async() {})
|
||||
}
|
||||
|
||||
#[macro_export]
|
||||
macro_rules! consumes_async {
|
||||
(async) => (1)
|
||||
}
|
||||
|
||||
#[macro_export]
|
||||
macro_rules! consumes_async_raw {
|
||||
(r#async) => (1)
|
||||
}
|
||||
|
||||
#[macro_export]
|
||||
macro_rules! passes_ident {
|
||||
($i: ident) => ($i)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue