mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-03 12:57:38 +03:00
8 lines
154 B
Rust
8 lines
154 B
Rust
#![feature(prelude_import)]
|
|
#![doc = " Test"]
|
|
#[prelude_import]
|
|
use std::prelude::v1::*;
|
|
#[macro_use]
|
|
extern crate std;
|
|
#[doc = " Test"]
|
|
pub fn test() {}
|