Martin v. Löwis added the comment:

"const T" and "T const" are the same type. This compiles, and all variables 
have the same type:

int main()
{
  const volatile int a;
  const int volatile b;
  int const volatile c;
  volatile int const d;
  volatile int const etc;
}

Even "volatile short const int" and "long volatile long const int" work.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue22136>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to