I'm getting a strange bug from the RTT. The bug disappears, if the 
function takes less than five float arguments.

$ x10c++ Test.x10 && ./a.out

ITable lookup failure!!
        RTT of interface: 0x8054540: 
(x10.lang.Float,x10.lang.Float,x10.lang.Float,x10.lang.Float,x10.lang.Float,x10.lang.Float)=>x10.lang.Float
        RTT of interfaces implemented by receiver
                0x8054500 
(x10.lang.Float,x10.lang.Float,x10.lang.Float,x10.lang.Float,x10.lang.Float,x10.lang.Boolean)=>x10.lang.Float
        RTT of receiver (nil) NULL!

Aborted
$ cat Test.x10

public class Test {
        public static def main(args:Array[String]) {
                val funny = (a:float, b:float, c:float, d:float, e:float, 
test:boolean) => 0f;

                val x = funny(01f, 01f, 01f, 01f, 01f, true);
        }
};


-- 
Andreas Zwinkau

  Karlsruhe Institute of Technology (KIT)
  Institut für Programmstrukturen und Datenorganisation (IPD)
  Lehrstuhl Prof. Snelting
  Adenauerring 20a
  76131 Karlsruhe

  Phone:  +49 721 608 48351
  Fax:    +49 721 608 48457
  Email:  zwin...@kit.edu
  Web:    http://pp.info.uni-karlsruhe.de/person.php?id=107

  KIT – University of the State of Baden-Wuerttemberg and
  National Research Center of the Helmholtz Association

------------------------------------------------------------------------------
All of the data generated in your IT infrastructure is seriously valuable.
Why? It contains a definitive record of application performance, security 
threats, fraudulent activity, and more. Splunk takes this data and makes 
sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-d2d-c2
_______________________________________________
X10-users mailing list
X10-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/x10-users

Reply via email to