# test construction of bytearray from array with float type
try:
from uarray import array
except ImportError:
from array import array
print("SKIP")
raise SystemExit
print(bytearray(array("f", [1, 2.3])))