2022-09-02 23:36:25 -04:00

34 lines
977 B
Plaintext

================================================================================
Shebang ignored at beginning of first line
================================================================================
#!/usr/bin/env groovy
hello
--------------------------------------------------------------------------------
(source_file
(script_part
(statement
(expression
(path_expression
(identifier))))))
================================================================================
Shebang not ignored after first character
================================================================================
#!/usr/bin/env groovy
--------------------------------------------------------------------------------
(source_file
(ERROR
(UNEXPECTED '#')
(identifier)
(UNEXPECTED '/')
(identifier)
(UNEXPECTED '/')
(identifier))
(script_part
(statement
(expression
(path_expression
(identifier))))))