1
Fork 0

Add a test

This commit is contained in:
Taiki Endo 2019-03-27 16:08:47 +09:00
parent c5fb4d0d2f
commit d59b46fd49

View file

@ -0,0 +1,18 @@
#![allow(dead_code, unused_imports)]
#![feature(no_core)]
#![no_core]
// edition:2018
extern crate std;
extern crate core;
use core::{prelude::v1::*, *};
fn foo() {
for _ in &[()] {}
}
fn bar() -> Option<()> {
None?
}
fn main() {}