summaryrefslogtreecommitdiff
path: root/test/files/pos/t6976
Commit message (Collapse)AuthorAgeFilesLines
* SI-6976 Fix value class separate compilation crasher.Jason Zaugg2013-01-163-0/+44
We can't guarantee that the owner of the value class is initialized, and if it isn't, the search for the companion module will turn up bubkis. This is a localized fix, but I'd be suprised if there weren't other places that suffered from the same problem. Wouldn't it be nicer to have something like: // doesn't force info sym.raw.info sym.raw.companionModule // forces info sym.info sym.companionModule