FILE: booleanOperators.kt
    public abstract interface A : R|kotlin/Any| {
        public abstract fun foo(): R|kotlin/Unit|

    }
    public abstract interface B : R|A| {
        public abstract fun bar(): R|kotlin/Unit|

    }
    public abstract interface C : R|A| {
        public abstract fun baz(): R|kotlin/Unit|

    }
    public final fun test_1(x: R|kotlin/Any|): R|kotlin/Unit| {
        when () {
            (R|<local>/x| is R|B|) && (R|<local>/x| is R|C|) ->  {
                R|<local>/x|.R|/A.foo|()
                R|<local>/x|.R|/B.bar|()
                R|<local>/x|.R|/C.baz|()
            }
            else ->  {
            }
        }

    }
    public final fun test_2(x: R|kotlin/Any|): R|kotlin/Unit| {
        when () {
            (R|<local>/x| is R|B|) || (R|<local>/x| is R|C|) ->  {
                R|<local>/x|.R|/A.foo|()
                R|<local>/x|.<Unresolved name: bar>#()
                R|<local>/x|.<Unresolved name: baz>#()
            }
            else ->  {
            }
        }

    }
    public final fun test_3(x: R|kotlin/Any|): R|kotlin/Unit| {
        when () {
            (R|<local>/x| !is R|A|).R|kotlin/Boolean.not|() ->  {
                R|<local>/x|.R|/A.foo|()
            }
            else ->  {
            }
        }

    }
    public final fun test_4(x: R|kotlin/Any|): R|kotlin/Unit| {
        when () {
            (R|<local>/x| !is R|kotlin/String|) || ==(R|<local>/x|.R|kotlin/String.length|, Int(0)) ->  {
                R|<local>/x|.<Unresolved name: length>#
            }
            else ->  {
            }
        }

        R|<local>/x|.<Unresolved name: length>#
    }
