[Search for users]
[Overall Top Noters]
[List of all Conferences]
[Download this site]
| Title: | Digital Ladebug debugger | 
|  | 
| Moderator: | TLE::LUCIA | 
|  | 
| Created: | Fri Feb 28 1992 | 
| Last Modified: | Fri Jun 06 1997 | 
| Last Successful Update: | Fri Jun 06 1997 | 
| Number of topics: | 969 | 
| Total number of notes: | 3959 | 
888.0. "Method not finished yet: GetClassType typedefs of classes" by ADA9X::BRETT () Fri Mar 14 1997 14:59
% cat eg037.cxx
typedef struct {
    int i;
} T;
typedef struct {
    union {
        int i;
        int j;
    } u;
} T2;
T t;
T2 t2;
int main()
{
    return t.i + t2.u.i;
}
% cat eg037.dbx
stop in main
run
W
whatis t
whatis t2
whatis T
whatis T2
whatis T2.u
whatis t2.u
whatis T2::u
quit
Internal Error: Method not finished yet: GetClassType typedefs of classes.
Internal Error: Method not finished yet: GetClassType typedefs of classes.