digitalmars.D.bugs - visibility bug?
- David Medlock (22/24) Sep 22 2005 module visibility;
- =?ISO-8859-1?Q?Thomas_K=FChne?= (11/43) Sep 22 2005 -----BEGIN PGP SIGNED MESSAGE-----
module visibility; public: class A(T) { private A next; } alias A!(B) AB; class B { AB head; void add( AB var ) { var.next = head; head = var; } } Error (DMD 0.131,Windows XP): ---------- Capture Output ----------"C:\dmd\bin\dmd.exe" -debug -c "E:\proj\temp\visibility.d"E:\proj\temp\visibility.d(17): class visibility.A!(B ).A member next is not accessibleTerminated with exit code 1.A(T).next should be visible since it's in the same module. -DavidM
Sep 22 2005
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 David Medlock schrieb:module visibility; public: class A(T) { private A next; } alias A!(B) AB; class B { AB head; void add( AB var ) { var.next = head; head = var; } } Error (DMD 0.131,Windows XP): ---------- Capture Output ----------Known: http://dstress.kuehne.cn/run/private_04.d Thomas -----BEGIN PGP SIGNATURE----- iD8DBQFDMtP63w+/yD4P9tIRAoSZAJ9oWe7R8bLUpG3es5YNK/NhRPdUjACgpOnm 02bHKuRbP1I+0oTdmLi0bmU= =q2Mg -----END PGP SIGNATURE-----"C:\dmd\bin\dmd.exe" -debug -c "E:\proj\temp\visibility.d"E:\proj\temp\visibility.d(17): class visibility.A!(B ).A member next is not accessibleTerminated with exit code 1.A(T).next should be visible since it's in the same module.
Sep 22 2005