blob: 8040d3902b3fd40631e3444dc649d863e6683258 [file] [log] [blame]
# lex_error2.py
#
# t_error defined, but not function
import sys
if ".." not in sys.path: sys.path.insert(0,"..")
import ply.lex as lex
tokens = [
"PLUS",
"MINUS",
"NUMBER",
]
t_PLUS = r'\+'
t_MINUS = r'-'
t_NUMBER = r'\d+'
t_error = "foo"
lex.lex()