Refactor golden files to follow xyz_log_ and xyz_src_ naming convention
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
--- test.c ---
|
||||
1| module my_module; import ;
|
||||
^
|
||||
expected module name to import
|
||||
@@ -0,0 +1 @@
|
||||
import ;
|
||||
@@ -0,0 +1,4 @@
|
||||
--- test.c ---
|
||||
1| import other_module;
|
||||
^^^^^^
|
||||
expected 'module' keyword
|
||||
@@ -0,0 +1 @@
|
||||
import other_module;
|
||||
@@ -0,0 +1,4 @@
|
||||
--- test.c ---
|
||||
1| int main() []
|
||||
^^
|
||||
unexpected token
|
||||
@@ -0,0 +1 @@
|
||||
int main() []
|
||||
@@ -0,0 +1,4 @@
|
||||
--- test.c ---
|
||||
1| int main() []
|
||||
^^
|
||||
unexpected token 'x'
|
||||
@@ -0,0 +1 @@
|
||||
int main() []
|
||||
@@ -0,0 +1,4 @@
|
||||
--- test.c ---
|
||||
1| module my_module; import other_module
|
||||
^
|
||||
expected ';' after import
|
||||
@@ -0,0 +1 @@
|
||||
module my_module; import other_module
|
||||
@@ -0,0 +1,4 @@
|
||||
--- test.c ---
|
||||
1| module my_module
|
||||
^
|
||||
expected ';' after module name
|
||||
@@ -0,0 +1 @@
|
||||
module my_module
|
||||
@@ -0,0 +1,4 @@
|
||||
--- test.c ---
|
||||
1| %
|
||||
^
|
||||
unexpected token '%'
|
||||
@@ -0,0 +1 @@
|
||||
%
|
||||
Reference in New Issue
Block a user