public class Test49 {

    void m() {
        int a = 10;
        int b = 20;
        int x = -1;
        int z = x > 0 ? a : b;
    }
}
