summaryrefslogtreecommitdiff
path: root/test/files/neg/t4541.check
Commit message (Collapse)AuthorAgeFilesLines
* Closes SI-5148.Hubert Plociniczak2012-06-271-2/+2
| | | | | | | | | | Unfortunately we have to wrap transform to catch all the MissingRequirementErrors exceptions (wrapped in TypeErrors). This is because we force the info of the symbol in a couple of places and we would have to catch all/some of them (and remove the duplicates as well which really becomes messy). Review by @axel22.
* Fix SI-4541.Aleksandar Prokopec2012-06-181-0/+7
Catch type errors when duplicating trees. In this case, to access a protected member from a specialized class is an error, so we would have to make the member public anyway. Better it is then to report an error and have the user make the field public explicitly. Review by @dragos.