C1005: Illegal storage class

[ERROR]

Description

A declaration contains an illegal storage class.

Example
  auto int i; // 'auto' illegal for global variables

  
Tips

Apply a correct combination of storage classes.

Seealso