mirror of
https://github.com/thepigeongenerator/mcaselector-lite.git
synced 2025-12-17 11:25:45 +01:00
9 lines
109 B
C
9 lines
109 B
C
#pragma once
|
|
|
|
#include "test.h"
|
|
|
|
int test_sar(void *dat) {
|
|
(void)dat;
|
|
return assert_true(-3 >> 5 == -1);
|
|
}
|