I thought that maybe I could make something like `...
# announcements
l
I thought that maybe I could make something like
Copy code
fun test() {
        val x = Foo(11)
        require(x.x > 10)
        
        if (x.x == 3) {
            //Compile error because x must be > 10
        }
    }