View Issue Details

IDProjectCategoryView StatusLast Update
0000381Ecere SDKidepublic2018-07-18 05:30
Reporterthexa4 Assigned Tojerome  
PrioritynormalSeverityminorReproducibilityhave not tried
Status assignedResolutionopen 
Target Version0.44.16 
Summary0000381: Infinite recursion on processing types for 2 classes offering a conversion property to each other
DescriptionInfinite Recursion:
         class ClassOne
         {
            public int a, b;

            property ClassTwo
            {
            }
         }

         class ClassTwo
         {
            public int a, b;

            property ClassOne
            {
               set { this =^^^ a = value.a; b = value.b; }
               get { return { a, b }; }
            }
         }
TagsNo tags attached.

Relationships

related to 0001197 new Silent, leaking and confusing use of round-trip through conversion property when missing a cast 

Activities

There are no notes attached to this issue.

Issue History

Date Modified Username Field Change
2010-02-24 23:02 thexa4 New Issue
2012-03-08 16:52 redj Target Version => 0.45 Ginkakuji
2012-03-29 07:52 redj Category => ide
2012-03-29 07:52 redj Project @3@ => Ecere SDK
2014-07-11 18:38 jerome Target Version 0.45 Ginkakuji => 0.46 eC II
2014-07-11 18:39 jerome Description Updated View Revisions
2016-07-12 03:25 jerome Target Version 0.46 eC II => 0.44.15
2016-07-12 04:37 jerome Assigned To => jerome
2016-07-12 04:37 jerome Status new => assigned
2016-07-15 00:51 jerome Target Version 0.44.15 => 0.44.16
2016-07-15 00:51 jerome Summary Infinite recursion => Infinite recursion on processing types for 2 classes offering a conversion property to each other
2018-07-18 05:30 jerome Relationship added related to 0001197