Add testcase.

This commit is contained in:
Cornelius Riemenschneider
2020-02-03 17:23:24 +01:00
parent 1b68f86d5b
commit cf8efbb5a0

View File

@@ -186,3 +186,9 @@ int test15(int i, int x) {
}
return i;
}
// safe integer type conversion
int test16(int i) {
long l;
l = i;
}