Allow various name convention lints.

This commit is contained in:
Felix S. Klock II 2018-09-06 14:45:33 +02:00
parent f3b766d7ad
commit 84a02e17da
7 changed files with 7 additions and 0 deletions

View file

@ -9,6 +9,7 @@
// except according to those terms.
// run-pass
#![allow(non_upper_case_globals)]
struct CustomAutoRooterVFTable {
trace: unsafe extern "C" fn(this: *mut i32, trc: *mut u32),

View file

@ -9,6 +9,7 @@
// except according to those terms.
// run-pass
#![allow(non_camel_case_types)]
// edition:2018

View file

@ -9,6 +9,7 @@
// except according to those terms.
// run-pass
#![allow(non_camel_case_types)]
// edition:2018

View file

@ -9,6 +9,7 @@
// except according to those terms.
// run-pass
#![allow(non_camel_case_types)]
// edition:2018

View file

@ -9,6 +9,7 @@
// except according to those terms.
// run-pass
#![allow(non_camel_case_types)]
// edition:2018

View file

@ -9,6 +9,7 @@
// except according to those terms.
// run-pass
#![allow(non_snake_case)]
// ignore-wasm32-bare no libc to test ffi with

View file

@ -9,6 +9,7 @@
// except according to those terms.
// run-pass
#![allow(non_snake_case)]
#![feature(untagged_unions)]
#![feature(repr_packed)]