diff --git a/test/fixtures/error_corpus/c_errors.txt b/test/fixtures/error_corpus/c_errors.txt index 11b81d6a..d1d76d78 100644 --- a/test/fixtures/error_corpus/c_errors.txt +++ b/test/fixtures/error_corpus/c_errors.txt @@ -141,30 +141,3 @@ int y = 5; (translation_unit (declaration (primitive_type) (ERROR (identifier)) (identifier)) (declaration (primitive_type) (init_declarator (identifier) (number_literal)))) - -========================================== -Declarations with missing variable names -========================================== - -int a() { - struct x = 1; - int = 2; -} - ---- - -(translation_unit - (function_definition - (primitive_type) - (function_declarator (identifier) (parameter_list)) - (compound_statement - (declaration - (struct_specifier (type_identifier)) - (init_declarator - (MISSING) - (number_literal))) - (declaration - (primitive_type) - (init_declarator - (MISSING) - (number_literal))))))