From 459241f272748ff2e57b2c7e84f5a04f78d67edb Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Wed, 24 Jul 2019 12:38:21 +0300 Subject: move syntax tests to unit tests --- .../inline/err/0003_pointer_type_no_mutability.txt | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 crates/ra_syntax/tests/data/parser/inline/err/0003_pointer_type_no_mutability.txt (limited to 'crates/ra_syntax/tests/data/parser/inline/err/0003_pointer_type_no_mutability.txt') diff --git a/crates/ra_syntax/tests/data/parser/inline/err/0003_pointer_type_no_mutability.txt b/crates/ra_syntax/tests/data/parser/inline/err/0003_pointer_type_no_mutability.txt deleted file mode 100644 index b97e339bb..000000000 --- a/crates/ra_syntax/tests/data/parser/inline/err/0003_pointer_type_no_mutability.txt +++ /dev/null @@ -1,17 +0,0 @@ -SOURCE_FILE@[0; 14) - TYPE_ALIAS_DEF@[0; 13) - TYPE_KW@[0; 4) "type" - WHITESPACE@[4; 5) " " - NAME@[5; 6) - IDENT@[5; 6) "T" - WHITESPACE@[6; 7) " " - EQ@[7; 8) "=" - WHITESPACE@[8; 9) " " - POINTER_TYPE@[9; 12) - STAR@[9; 10) "*" - TUPLE_TYPE@[10; 12) - L_PAREN@[10; 11) "(" - R_PAREN@[11; 12) ")" - SEMI@[12; 13) ";" - WHITESPACE@[13; 14) "\n" -error 10: expected mut or const in raw pointer type (use `*mut T` or `*const T` as appropriate) -- cgit v1.2.3