FILE: importedReceiver.kt
    public final fun <T> R|T|.foo(): R|kotlin/Unit| {
    }
    public abstract interface Your<R> : R|kotlin/Any| {
        public open fun wat(): R|kotlin/Unit| {
        }

        public open fun <T> R|T|.watwat(): R|kotlin/Unit| {
        }

    }
    public final object My : R|Your<kotlin/Double>| {
        private constructor(): R|My| {
            super<R|kotlin/Any|>()
        }

        public final fun <T> R|T|.bar(): R|kotlin/Unit| {
        }

        public final fun baz(): R|kotlin/Unit|

        public final fun R|kotlin/Boolean|.gau(): R|kotlin/Unit| {
        }

    }
    public final fun test(): R|kotlin/Unit| {
        Int(42).R|/foo|<R|kotlin/Int|>()
        String().R|/foo|<R|kotlin/String|>()
        (this@R|/My|, Int(42)).R|/My.bar|<R|kotlin/Int|>()
        (this@R|/My|, String()).R|/My.bar|<R|kotlin/String|>()
        this@R|/My|.R|/My.baz|()
        (this@R|/My|, Boolean(true)).R|/My.gau|()
        this@R|/Your|.R|FakeOverride</Your.wat: R|kotlin/Unit|>|()
        Boolean(false).<Inapplicable(WRONG_RECEIVER): [/Your.watwat]>#()
    }
