blob: c9c2e078addfaedf4c8ceea6680ca2a141d5cafe [file] [log] [blame]
{ This module exports an operator defined in a non-brief operator
declaration. This means the exported symbol is a pointer to a
function and shall be indirected on the accessing side. }
module Module_7 =
def pub prio MINUS = 9;
pub op (int,int)int MINUS = minus;
proc minus = (int a, b) int: a - b;
skip
fed