Add function test

This commit is contained in:
Nicolas Chataing 2020-08-06 20:59:25 +02:00
parent 785685a9f7
commit 70c6a833e2

View File

@ -0,0 +1,14 @@
/*
declaration scope S:
context f content int depends on int
context x content int
context b content bool
scope S:
def f of x ? (x >= x) |= x + x
def f of x ? not b |= x * x
def b = false
def x = f of 3
*/