Files
openide/python/testData/highlighting/noErrorMetaClassOverloadBitwiseOrChain.py
andrey.matveev 806fa72b80 PY-51329 Fix problem with overloaded bitwise or operator chains
(cherry picked from commit f265b05500ef8a6b35e7fef090a971f4a5449453)

IJ-MR-17506

GitOrigin-RevId: 5cac0b7d071f753023b97c4e4152acbe388b8f08
2022-02-11 14:18:56 +00:00

13 lines
206 B
Python

class MyMeta(type):
def __or__(self, other):
return other
class Foo(metaclass=MyMeta):
...
class Bar(metaclass=MyMeta):
...
class Baz(metaclass=MyMeta):
...
print(Foo | Bar | Baz)