diff options
author | aeischeid <a.eischeid@gmail.com> | 2016-05-11 16:19:17 -0500 |
---|---|---|
committer | aeischeid <a.eischeid@gmail.com> | 2016-05-11 16:19:17 -0500 |
commit | fa4665e2a74dc324f3e03cd8342e9abb151133c2 (patch) | |
tree | ead8ba1171120c5708c78b0f85c0a95a1d73022a /python/tidy/servo_tidy_tests/rust_tidy.rs | |
parent | a85db48623d8f5b5dbddbcc1f1ba0eaa0b531249 (diff) | |
download | servo-fa4665e2a74dc324f3e03cd8342e9abb151133c2.tar.gz servo-fa4665e2a74dc324f3e03cd8342e9abb151133c2.zip |
add tidy test for 'missing space after :' in stucts
Diffstat (limited to 'python/tidy/servo_tidy_tests/rust_tidy.rs')
-rw-r--r-- | python/tidy/servo_tidy_tests/rust_tidy.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/python/tidy/servo_tidy_tests/rust_tidy.rs b/python/tidy/servo_tidy_tests/rust_tidy.rs index 580f9e2ea96..92db863dfaa 100644 --- a/python/tidy/servo_tidy_tests/rust_tidy.rs +++ b/python/tidy/servo_tidy_tests/rust_tidy.rs @@ -29,6 +29,10 @@ impl test { 2 => 1, }; let z = &Vec<T>; + struct Member { + member_name:"Foo" + member_id:5 + } } fn test_fun2(y : &String, z : &Vec<f32>) -> f32 { |