diff options
Diffstat (limited to 'crates/syntax/test_data/parser/ok/0030_traits.rs')
-rw-r--r-- | crates/syntax/test_data/parser/ok/0030_traits.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/crates/syntax/test_data/parser/ok/0030_traits.rs b/crates/syntax/test_data/parser/ok/0030_traits.rs new file mode 100644 index 000000000..ac30843ef --- /dev/null +++ b/crates/syntax/test_data/parser/ok/0030_traits.rs | |||
@@ -0,0 +1,7 @@ | |||
1 | trait Runnable { | ||
2 | fn handler(); | ||
3 | } | ||
4 | |||
5 | trait TraitWithExpr { | ||
6 | fn fn_with_expr(x: [i32; 1]); | ||
7 | } | ||