aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/algol68/execute/modules/module7.a68
blob: c9c2e078addfaedf4c8ceea6680ca2a141d5cafe (plain)
1
2
3
4
5
6
7
8
9
10
{ 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