aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/tests/data/parser/inline/ok/0132_default_fn_type.rs
diff options
context:
space:
mode:
authorcsmoe <[email protected]>2019-06-19 07:25:10 +0100
committercsmoe <[email protected]>2019-06-19 11:37:38 +0100
commitd04473accb1a22abdb2262d0e8954beaf28ae364 (patch)
tree4b4783e389168a39f9a930a30bfb29e1f883d237 /crates/ra_syntax/tests/data/parser/inline/ok/0132_default_fn_type.rs
parentf7da575a98799aa2fffffe504d7fa4a314819c7c (diff)
fix: specialization(with blindly parsing)
Change-Id: Ic5d2767e8781568d76d4d0013cd6081e95ae8a95
Diffstat (limited to 'crates/ra_syntax/tests/data/parser/inline/ok/0132_default_fn_type.rs')
-rw-r--r--crates/ra_syntax/tests/data/parser/inline/ok/0132_default_fn_type.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/crates/ra_syntax/tests/data/parser/inline/ok/0132_default_fn_type.rs b/crates/ra_syntax/tests/data/parser/inline/ok/0132_default_fn_type.rs
new file mode 100644
index 000000000..8f5d61113
--- /dev/null
+++ b/crates/ra_syntax/tests/data/parser/inline/ok/0132_default_fn_type.rs
@@ -0,0 +1,4 @@
1impl T for Foo {
2 default type T = Bar;
3 default fn foo() {}
4}