summaryrefslogtreecommitdiff
path: root/python/testData/highlighting/returnWithArgumentsInGenerator.py
blob: f16d817498edc4cd8e25d65ee06bd6ab490f28ab (plain)
1
2
3
def f():
  yield 42
  <error descr="Python versions < 3.3 do not allow 'return' with argument inside generator.">return 28</error>