Rollup merge of #37297 - thepowersgang:fix-bad-crate-attrs, r=eddyb

test - Add missing ! to crate_type/crate_id attributes

Fix some useless attributes in a test dependency.
This commit is contained in:
Guillaume Gomez 2016-10-22 01:21:59 +02:00 committed by GitHub
commit 8aa14c3f49
1 changed files with 2 additions and 2 deletions

View File

@ -12,8 +12,8 @@
#![feature(libc)]
#[crate_id = "check_static_recursion_foreign_helper"]
#[crate_type = "lib"]
#![crate_name = "check_static_recursion_foreign_helper"]
#![crate_type = "lib"]
extern crate libc;