Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/rational.cfa

    r0087e0e r200fcb3  
    1010// Created On       : Mon Mar 28 08:43:12 2016
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Mar 27 07:37:17 2019
    13 // Update Count     : 80
     12// Last Modified On : Tue Dec  4 21:46:42 2018
     13// Update Count     : 69
    1414//
    1515
     
    1919#include <fstream.hfa>
    2020
     21// UNNECESSARY, FIX ME
     22void ?{}( int & this ) { this = 0; }
     23void ?{}( int & this, zero_t ) { this = 0; }
     24void ?{}( int & this, one_t ) { this = 1; }
    2125double convert( int i ) { return (double)i; }
    2226int convert( double d ) { return (int)d; }
     
    5458        sout | a * b;
    5559        sout | a / b;
    56 //      sout | a \ 2 | b \ 2; // FIX ME
    57 //      sout | a \ -2 | b \ -2;
    5860
    5961        sout | "conversion";
Note: See TracChangeset for help on using the changeset viewer.