[Search for users] [Overall Top Noters] [List of all Conferences] [Download this site]

Conference turris::c_plus_plus

Title:C++
Notice:Read 1.* and use keywords (e.g. SHOW KEY/FULL KIT_CXX_VAX_VMS)
Moderator:DECCXX::AMARTIN
Created:Fri Nov 06 1987
Last Modified:Thu Jun 05 1997
Last Successful Update:Fri Jun 06 1997
Number of topics:3604
Total number of notes:18242

3558.0. "Compiler ACCVIO on Alpha, BUGCHECK on VAX" by CSC32::V_HAVER () Tue Apr 29 1997 01:14

There are some other notes with similar code that produces an ACCVIO or
bugcheck.  Just want to make sure this is fixed in V5.6.  The following code
should get a valid compiler error and not abort under V5.6.

class outer
{
public:
  outer();
private:
  class inner
    {
    public:
      inner();
    };
};

outer::outer()
{
}

// Following line causes ACCVIO on DEC C++ V5.5 on Alpha
outer::inner()
{
}

int main(int argc, char *argv[])
{
}
T.RTitleUserPersonal
Name
DateLines
3558.1nope, loggedCAIRN::HARRISKevin Harris, dtn 381-2039Tue Apr 29 1997 15:104
I tried it on the current development version (T5.6) for both VAX and Alpha
and it gets an access violation on both, in the same place.  I'll log it
as a new bug against 5.6 right now.
				-Kevin