#include <stdio.h>

int test(char t1[0], char* t2)
{
    return sizeof(t1) != sizeof(t2) ? 0 : -1;
}
int main()
{
    return test("1","2");
}