[Issue 2830] private attribute doesn't work for structs/unions/classes

2019-07-15 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=2830 Mathias LANG changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 2830] private attribute doesn't work for structs/unions/classes

2016-03-09 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=2830 Issue 2830 depends on issue 314, which changed state. Issue 314 Summary: [module] Static, renamed, and selective imports are always public https://issues.dlang.org/show_bug.cgi?id=314 What|Removed |Added ---

[Issue 2830] private attribute doesn't work for structs/unions/classes

2016-02-20 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=2830 Issue 2830 depends on issue 313, which changed state. Issue 313 Summary: [module] Fully qualified names bypass private imports https://issues.dlang.org/show_bug.cgi?id=313 What|Removed |Added

[Issue 2830] private attribute doesn't work for structs/unions/classes

2012-10-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2830 Oleg Kuporosov changed: What|Removed |Added CC||oleg.kuporo...@gmail.com --- Comment

[Issue 2830] private attribute doesn't work for structs/unions/classes

2012-09-04 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2830 Walter Bright changed: What|Removed |Added Version|D1 & D2 |D1 --- Comment #11 from Walter Bright

[Issue 2830] private attribute doesn't work for structs/unions/classes

2012-01-23 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2830 --- Comment #10 from Walter Bright 2012-01-23 11:25:49 PST --- I meant accessible. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are receiving this mail because: ---

[Issue 2830] private attribute doesn't work for structs/unions/classes

2012-01-23 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2830 --- Comment #9 from Jonathan M Davis 2012-01-23 07:51:48 PST --- > It's not a spec bug. Private declarations should not be visible outside their > module. Do you mean not visible or not accessible? At present, private seems to work like C++ i

[Issue 2830] private attribute doesn't work for structs/unions/classes

2012-01-23 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2830 Walter Bright changed: What|Removed |Added Keywords|spec| CC|

[Issue 2830] private attribute doesn't work for structs/unions/classes

2011-05-08 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2830 Jonathan M Davis changed: What|Removed |Added CC||jmdavisp...@gmx.com Versi

[Issue 2830] private attribute doesn't work for structs/unions/classes

2009-04-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2830 --- Comment #6 from s...@iname.com 2009-04-12 17:53 --- Discussion taken to: "The great inapplicable attribute debate" digitalmars.D:87915 http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmars.D&article_id=87915 --

[Issue 2830] private attribute doesn't work for structs/unions/classes

2009-04-11 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2830 ma...@pochta.ru changed: What|Removed |Added URL||http://www.digitalmars.com/d

[Issue 2830] private attribute doesn't work for structs/unions/classes

2009-04-11 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2830 --- Comment #4 from g...@nwawudu.com 2009-04-11 04:11 --- > tmp.d > - > import tmp1; > > void main() { > TestStruct s; > TestUnion u; > auto c = new TestClass; > s.var = var; // Fails > s.var = a.var; // OK

[Issue 2830] private attribute doesn't work for structs/unions/classes

2009-04-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2830 s...@iname.com changed: What|Removed |Added Version|2.027 |1.043 --- Comment #3 from s...@i

[Issue 2830] private attribute doesn't work for structs/unions/classes

2009-04-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2830 --- Comment #2 from jarrett.billings...@gmail.com 2009-04-10 11:17 --- This is almost certainly a dup of BUG 1441. The same lack of privacy mechanism applies to all kinds of UDTs. It doesn't really have anything to do with BUG 313 o

[Issue 2830] private attribute doesn't work for structs/unions/classes

2009-04-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2830 g...@nwawudu.com changed: What|Removed |Added BugsThisDependsOn||313, 314 Summary|private a