2015-11-02 17:44:53 -06:00
|
|
|
// This should fail a normal compile due to non_camel_case_types,
|
|
|
|
// It should pass a doc-compile as it only needs to type-check and
|
|
|
|
// therefore should not concern itself with the lints.
|
|
|
|
#[deny(warnings)]
|
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has cap_lints/struct.Foo.html //* 'Foo'
|
2018-06-09 14:06:40 -05:00
|
|
|
pub struct Foo {
|
2015-11-02 17:44:53 -06:00
|
|
|
field: i32,
|
|
|
|
}
|