~eda-qa/leaflang/master

« back to all changes in this revision

Viewing changes to share/unit_tests/block/abi/call_tuple_5.lfb

  • Committer: edA-qa mort-ora-y
  • Date: 2018-05-04 08:13:11 UTC
  • mfrom: (115.1.17 platform)
  • Revision ID: eda-qa@disemia.com-20180504081311-lts1kqur3wugiq8v
merge platform

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* EXPECT(4-18-27-36-45) */
 
2
typedef abi_tuple_5 : abi_pack [
 
3
        a : abi_char,
 
4
        b : abi_float,
 
5
        c : abi_short,
 
6
        d : abi_double,
 
7
        e : abi_int,
 
8
]
 
9
 
 
10
@import("abi_call_test_tuple_5") multi abi_call_test_tuple_5 : ( a : abi_tuple_5, b : abi_tuple_5 ) -> ( : abi_tuple_5 ) raw no_throw
 
11
 
 
12
var q = abi_call_test_tuple_5([1,2,3,4,5],[3,-20,-30,-40,-50])
 
13
trace(q.a)
 
14
trace(q.b)
 
15
trace(q.c)
 
16
trace(q.d)
 
17
trace(q.e)