Commit f46cd050 authored by Tom Niget's avatar Tom Niget

Add TODO mentioning GCC bug

parent 59458f3f
......@@ -37,6 +37,8 @@ def fct2():
if __name__ == "__main__":
# todo: 0x55 & 7 == 5
print(is_cpp)
# TODO: doesn't compile under G++ 12.2, fixed in trunk on March 15
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98056
print("C++ " if is_cpp() else "Python",
"res=", 5, ".", True, [4, 5, 6], {7, 8, 9}, [1, 2] + [3, 4], [5, 6] * 3, {1: 7, 9: 3}, 0x55 & 7 == 5,
2 + 3j)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment