mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-02 20:37:37 +03:00
8 lines
144 B
Rust
8 lines
144 B
Rust
#![feature(prelude_import)]
|
|
//! Test
|
|
#[prelude_import]
|
|
use std::prelude::rust_2021::*;
|
|
#[macro_use]
|
|
extern crate std;
|
|
/// Test
|
|
pub fn test() {}
|