blob: c196d132a236c3e1914f30624fdb6bc192112423 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <library/cpp/testing/unittest/registar.h>
#include <library/cpp/int128/int128.h>
#include <util/generic/cast.h>
Y_UNIT_TEST_SUITE(I128Suite) {
Y_UNIT_TEST(CreateI128FromUnsigned) {
i128 v{ui64(1)};
Y_UNUSED(v);
}
}
|