summaryrefslogtreecommitdiff
path: root/Examples/test-suite/python/cpp11_type_traits_runme.py
blob: d0dfb23d78dc0dacd8b8d77a6e87dd8648f42e57 (plain)
1
2
3
4
5
6
7
from cpp11_type_traits import *

if Elaborate(0, 0) != 1:
    raise RuntimeError("Elaborate should have returned 1")

if Elaborate(0, 0.0) != 2:
    raise RuntimeError("Elaborate should have returned 2")