Changes between Initial Version and Version 1 of Ticket #84


Ignore:
Timestamp:
Apr 3, 2018, 4:33:06 PM (7 years ago)
Author:
Rob Schluntz
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #84

    • Property Owner set to Rob Schluntz
    • Property Status changed from new to assigned
  • Ticket #84 – Description

    initial v1  
    1 <<<
     1{{{
    22struct S {
    33    int i, * p;
     
    2121(0) a.out : __main__Fi___1 + 0x2e  [0x4014e9]
    2222Abort (core dumped)
    23 >>>
     23}}}
     24
     25A simpler example:
     26{{{
     27
     28int main() {
     29  int i;
     30  int & x = i;
     31  int *&r = &x;
     32}
     33}}}