Changes in / [6065281f:3bf9d10]


Ignore:
Files:
4 deleted
15 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/parseargs.cfa

    r6065281f r3bf9d10  
    230230}
    231231
    232 void print_args_usage(cfa_option options[], const size_t opt_count, const char * usage, bool error)  __attribute__ ((noreturn)) {
     232void print_args_usage(cfa_option options[], size_t opt_count, const char * usage, bool error)  __attribute__ ((noreturn)) {
    233233        const array( cfa_option, opt_count ) & arr = (const array( cfa_option, opt_count ) &) *options;
    234234        usage(cfa_args_argv[0], arr, usage, error ? stderr : stdout);
    235235}
    236236
    237 void print_args_usage(int , char * argv[], cfa_option options[], const size_t opt_count, const char * usage, bool error)  __attribute__ ((noreturn)) {
     237void print_args_usage(int , char * argv[], cfa_option options[], size_t opt_count, const char * usage, bool error)  __attribute__ ((noreturn)) {
    238238        const array( cfa_option, opt_count ) & arr = (const array( cfa_option, opt_count ) &) *options;
    239239        usage(argv[0], arr, usage, error ? stderr : stdout);
  • src/InitTweak/GenInit.cc

    r6065281f r3bf9d10  
    300300
    301301#       warning Remove the _New suffix after the conversion is complete.
    302 
    303         // Outer pass finds declarations, for their type could wrap a type that needs hoisting
    304302        struct HoistArrayDimension_NoResolve_New final :
    305303                        public ast::WithDeclsToAdd<>, public ast::WithShortCircuiting,
    306304                        public ast::WithGuards, public ast::WithConstTranslationUnit,
    307                         public ast::WithVisitorRef<HoistArrayDimension_NoResolve_New>,
    308                         public ast::WithSymbolTableX<ast::SymbolTable::ErrorDetection::IgnoreErrors> {
    309 
    310                 // Inner pass looks within a type, for a part that depends on an expression
    311                 struct HoistDimsFromTypes final :
    312                                 public ast::WithShortCircuiting, public ast::WithGuards {
    313 
    314                         HoistArrayDimension_NoResolve_New * outer;
    315                         HoistDimsFromTypes( HoistArrayDimension_NoResolve_New * outer ) : outer(outer) {}
    316 
    317                         // Only intended for visiting through types.
    318                         // Tolerate, and short-circuit at, the dimension expression of an array type.
    319                         //    (We'll operate on the dimension expression of an array type directly
    320                         //    from the parent type, not by visiting through it)
    321                         // Look inside type exprs.
    322                         void previsit( const ast::Node * ) {
    323                                 assert( false && "unsupported node type" );
    324                         };
    325                         const ast::Expr * allowedExpr = nullptr;
    326                         void previsit( const ast::Type * ) {
    327                                 GuardValue( allowedExpr ) = nullptr;
    328                         }
    329                         void previsit( const ast::ArrayType * t ) {
    330                                 GuardValue( allowedExpr ) = t->dimension.get();
    331                         }
    332                         void previsit( const ast::PointerType * t ) {
    333                                 GuardValue( allowedExpr ) = t->dimension.get();
    334                         }
    335                         void previsit( const ast::TypeofType * t ) {
    336                                 GuardValue( allowedExpr ) = t->expr.get();
    337                         }
    338                         void previsit( const ast::Expr * e ) {
    339                                 assert( e == allowedExpr &&
    340                                     "only expecting to visit exprs that are dimension exprs or typeof(-) inner exprs" );
    341 
    342                                 // Skip the tolerated expressions
    343                                 visit_children = false;
    344                         }
    345                         void previsit( const ast::TypeExpr * ) {}
    346 
    347                         const ast::Type * postvisit(
    348                                         const ast::ArrayType * arrayType ) {
    349                                 static UniqueName dimensionName( "_array_dim" );
    350 
    351                                 if ( nullptr == arrayType->dimension ) {  // if no dimension is given, don't presume to invent one
    352                                         return arrayType;
    353                                 }
    354 
    355                                 // find size_t; use it as the type for a dim expr
    356                                 ast::ptr<ast::Type> dimType = outer->transUnit().global.sizeType;
    357                                 assert( dimType );
    358                                 add_qualifiers( dimType, ast::CV::Qualifiers( ast::CV::Const ) );
    359 
    360                                 // Special-case handling: leave the user's dimension expression alone
    361                                 // - requires the user to have followed a careful convention
    362                                 // - may apply to extremely simple applications, but only as windfall
    363                                 // - users of advanced applications will be following the convention on purpose
    364                                 // - CFA maintainers must protect the criteria against leaving too much alone
    365 
    366                                 // Actual leave-alone cases following are conservative approximations of "cannot vary"
    367 
    368                                 // Leave alone: literals and enum constants
    369                                 if ( dynamic_cast< const ast::ConstantExpr * >( arrayType->dimension.get() ) ) {
    370                                         return arrayType;
    371                                 }
    372 
    373                                 // Leave alone: direct use of an object declared to be const
    374                                 const ast::NameExpr * dimn = dynamic_cast< const ast::NameExpr * >( arrayType->dimension.get() );
    375                                 if ( dimn ) {
    376                                         std::vector<ast::SymbolTable::IdData> dimnDefs = outer->symtab.lookupId( dimn->name );
    377                                         if ( dimnDefs.size() == 1 ) {
    378                                                 const ast::DeclWithType * dimnDef = dimnDefs[0].id.get();
    379                                                 assert( dimnDef && "symbol table binds a name to nothing" );
    380                                                 const ast::ObjectDecl * dimOb = dynamic_cast< const ast::ObjectDecl * >( dimnDef );
    381                                                 if( dimOb ) {
    382                                                         const ast::Type * dimTy = dimOb->type.get();
    383                                                         assert( dimTy && "object declaration bearing no type" );
    384                                                         // must not hoist some: size_t
    385                                                         // must hoist all: pointers and references
    386                                                         // the analysis is conservative; BasicType is a simple approximation
    387                                                         if ( dynamic_cast< const ast::BasicType * >( dimTy ) ||
    388                                                              dynamic_cast< const ast::SueInstType<ast::EnumDecl> * >( dimTy ) ) {
    389                                                                 if ( dimTy->is_const() ) {
    390                                                                         // The dimension is certainly re-evaluable, giving the same answer each time.
    391                                                                         // Our user might be hoping to write the array type in multiple places, having them unify.
    392                                                                         // Leave the type alone.
    393 
    394                                                                         // We believe the new criterion leaves less alone than the old criterion.
    395                                                                         // Thus, the old criterion should have left the current case alone.
    396                                                                         // Catch cases that weren't thought through.
    397                                                                         assert( !Tuples::maybeImpure( arrayType->dimension ) );
    398 
    399                                                                         return arrayType;
    400                                                                 }
    401                                                         };
    402                                                 }
    403                                         }
    404                                 }
    405 
    406                                 // Leave alone: any sizeof expression (answer cannot vary during current lexical scope)
    407                                 const ast::SizeofExpr * sz = dynamic_cast< const ast::SizeofExpr * >( arrayType->dimension.get() );
    408                                 if ( sz ) {
    409                                         return arrayType;
    410                                 }
    411 
    412                                 // General-case handling: change the array-type's dim expr (hoist the user-given content out of the type)
    413                                 // - always safe
    414                                 // - user-unnoticeable in common applications (benign noise in -CFA output)
    415                                 // - may annoy a responsible user of advanced applications (but they can work around)
    416                                 // - protects against misusing advanced features
    417                                 //
    418                                 // The hoist, by example, is:
    419                                 // FROM USER:  float a[ rand() ];
    420                                 // TO GCC:     const size_t __len_of_a = rand(); float a[ __len_of_a ];
    421 
    422                                 ast::ObjectDecl * arrayDimension = new ast::ObjectDecl(
     305                        public ast::WithVisitorRef<HoistArrayDimension_NoResolve_New> {
     306                void previsit( const ast::ObjectDecl * decl );
     307                const ast::DeclWithType * postvisit( const ast::ObjectDecl * decl );
     308                // Do not look for objects inside there declarations (and type).
     309                void previsit( const ast::AggregateDecl * ) { visit_children = false; }
     310                void previsit( const ast::NamedTypeDecl * ) { visit_children = false; }
     311                void previsit( const ast::FunctionType * ) { visit_children = false; }
     312
     313                const ast::Type * hoist( const ast::Type * type );
     314
     315                ast::Storage::Classes storageClasses;
     316        };
     317
     318        void HoistArrayDimension_NoResolve_New::previsit(
     319                        const ast::ObjectDecl * decl ) {
     320                GuardValue( storageClasses ) = decl->storage;
     321        }
     322
     323        const ast::DeclWithType * HoistArrayDimension_NoResolve_New::postvisit(
     324                        const ast::ObjectDecl * objectDecl ) {
     325                return mutate_field( objectDecl, &ast::ObjectDecl::type,
     326                                hoist( objectDecl->type ) );
     327        }
     328
     329        const ast::Type * HoistArrayDimension_NoResolve_New::hoist(
     330                        const ast::Type * type ) {
     331                static UniqueName dimensionName( "_array_dim" );
     332
     333                if ( !isInFunction() || storageClasses.is_static ) {
     334                        return type;
     335                }
     336
     337                if ( auto arrayType = dynamic_cast< const ast::ArrayType * >( type ) ) {
     338                        if ( nullptr == arrayType->dimension ) {
     339                                return type;
     340                        }
     341
     342                        if ( !Tuples::maybeImpure( arrayType->dimension ) ) {
     343                                return type;
     344                        }
     345
     346                        ast::ptr<ast::Type> dimType = transUnit().global.sizeType;
     347                        assert( dimType );
     348                        add_qualifiers( dimType, ast::CV::Qualifiers( ast::CV::Const ) );
     349
     350                        ast::ObjectDecl * arrayDimension = new ast::ObjectDecl(
     351                                arrayType->dimension->location,
     352                                dimensionName.newName(),
     353                                dimType,
     354                                new ast::SingleInit(
    423355                                        arrayType->dimension->location,
    424                                         dimensionName.newName(),
    425                                         dimType,
    426                                         new ast::SingleInit(
    427                                                 arrayType->dimension->location,
    428                                                 arrayType->dimension
    429                                         )
    430                                 );
    431 
    432                                 ast::ArrayType * mutType = ast::mutate( arrayType );
    433                                 mutType->dimension = new ast::VariableExpr(
    434                                                 arrayDimension->location, arrayDimension );
    435                                 outer->declsToAddBefore.push_back( arrayDimension );
    436 
    437                                 return mutType;
    438                         }  // postvisit( const ast::ArrayType * )
    439                 }; // struct HoistDimsFromTypes
    440 
    441                 ast::Storage::Classes storageClasses;
    442                 void previsit(
    443                                 const ast::ObjectDecl * decl ) {
    444                         GuardValue( storageClasses ) = decl->storage;
    445                 }
    446 
    447                 const ast::DeclWithType * postvisit(
    448                                 const ast::ObjectDecl * objectDecl ) {
    449 
    450                         if ( !isInFunction() || storageClasses.is_static ) {
    451                                 return objectDecl;
    452                         }
    453 
    454                         const ast::Type * mid = objectDecl->type;
    455 
    456                         ast::Pass<HoistDimsFromTypes> hoist{this};
    457                         const ast::Type * result = mid->accept( hoist );
    458 
    459                         return mutate_field( objectDecl, &ast::ObjectDecl::type, result );
    460                 }
    461         };
    462 
    463 
    464 
     356                                        arrayType->dimension
     357                                )
     358                        );
     359
     360                        ast::ArrayType * mutType = ast::mutate( arrayType );
     361                        mutType->dimension = new ast::VariableExpr(
     362                                        arrayDimension->location, arrayDimension );
     363                        declsToAddBefore.push_back( arrayDimension );
     364
     365                        mutType->base = hoist( mutType->base );
     366                        return mutType;
     367                }
     368                return type;
     369        }
    465370
    466371        struct ReturnFixer_New final :
  • src/ResolvExpr/ResolveTypeof.h

    r6065281f r3bf9d10  
    3030        Type *resolveTypeof( Type*, const SymTab::Indexer &indexer );
    3131        const ast::Type * resolveTypeof( const ast::Type *, const ResolveContext & );
    32         const ast::Type * fixArrayType( const ast::Type *, const ResolveContext & );
    3332        const ast::ObjectDecl * fixObjectType( const ast::ObjectDecl * decl , const ResolveContext & );
    3433} // namespace ResolvExpr
  • src/ResolvExpr/Unify.cc

    r6065281f r3bf9d10  
    3232#include "AST/Type.hpp"
    3333#include "AST/TypeEnvironment.hpp"
    34 #include "Common/Eval.h"            // for eval
    3534#include "Common/PassVisitor.h"     // for PassVisitor
    3635#include "CommonType.hpp"           // for commonType
     
    780779        }
    781780
    782         // Unification of Expressions
    783         //
    784         // Boolean outcome (obvious):  Are they basically spelled the same?
    785         // Side effect of binding variables (subtle):  if `sizeof(int)` ===_expr `sizeof(T)` then `int` ===_ty `T`
    786         //
    787         // Context:  if `float[VAREXPR1]` ===_ty `float[VAREXPR2]` then `VAREXPR1` ===_expr `VAREXPR2`
    788         // where the VAREXPR are meant as notational metavariables representing the fact that unification always
    789         // sees distinct ast::VariableExpr objects at these positions
    790 
    791         static bool unify( const ast::Expr * e1, const ast::Expr * e2, ast::TypeEnvironment & env,
    792                 ast::AssertionSet & need, ast::AssertionSet & have, const ast::OpenVarSet & open,
    793                 WidenMode widen );
    794 
    795         class UnifyExpr final : public ast::WithShortCircuiting {
    796                 const ast::Expr * e2;
    797                 ast::TypeEnvironment & tenv;
    798                 ast::AssertionSet & need;
    799                 ast::AssertionSet & have;
    800                 const ast::OpenVarSet & open;
    801                 WidenMode widen;
    802         public:
    803                 bool result;
    804 
    805         private:
    806 
    807                 void tryMatchOnStaticValue( const ast::Expr * e1 ) {
    808                         Evaluation r1 = eval(e1);
    809                         Evaluation r2 = eval(e2);
    810 
    811                         if ( ! r1.hasKnownValue ) return;
    812                         if ( ! r2.hasKnownValue ) return;
    813 
    814                         if (r1.knownValue != r2.knownValue) return;
    815 
    816                         visit_children = false;
    817                         result = true;
    818                 }
    819 
    820         public:
    821 
    822                 void previsit( const ast::Node * ) { assert(false); }
    823 
    824                 void previsit( const ast::Expr * e1 ) {
    825                         tryMatchOnStaticValue( e1 );
    826                         visit_children = false;
    827                 }
    828 
    829                 void previsit( const ast::CastExpr * e1 ) {
    830                         tryMatchOnStaticValue( e1 );
    831 
    832                         if (result) {
    833                                 assert (visit_children == false);
    834                         } else {
    835                                 assert (visit_children == true);
    836                                 visit_children = false;
    837 
    838                                 auto e2c = dynamic_cast< const ast::CastExpr * >( e2 );
    839                                 if ( ! e2c ) return;
    840 
    841                                 // inspect casts' target types
    842                                 if ( ! unifyExact(
    843                                         e1->result, e2c->result, tenv, need, have, open, widen ) ) return;
    844 
    845                                 // inspect casts' inner expressions
    846                                 result = unify( e1->arg, e2c->arg, tenv, need, have, open, widen );
    847                         }
    848                 }
    849 
    850                 void previsit( const ast::VariableExpr * e1 ) {
    851                         tryMatchOnStaticValue( e1 );
    852 
    853                         if (result) {
    854                                 assert (visit_children == false);
    855                         } else {
    856                                 assert (visit_children == true);
    857                                 visit_children = false;
    858 
    859                                 auto e2v = dynamic_cast< const ast::VariableExpr * >( e2 );
    860                                 if ( ! e2v ) return;
    861 
    862                                 assert(e1->var);
    863                                 assert(e2v->var);
    864 
    865                                 // conservative: variable exprs match if their declarations are represented by the same C++ AST object
    866                                 result = (e1->var == e2v->var);
    867                         }
    868                 }
    869 
    870                 void previsit( const ast::SizeofExpr * e1 ) {
    871                         tryMatchOnStaticValue( e1 );
    872 
    873                         if (result) {
    874                                 assert (visit_children == false);
    875                         } else {
    876                                 assert (visit_children == true);
    877                                 visit_children = false;
    878 
    879                                 auto e2so = dynamic_cast< const ast::SizeofExpr * >( e2 );
    880                                 if ( ! e2so ) return;
    881 
    882                                 assert((e1->type != nullptr) ^ (e1->expr != nullptr));
    883                                 assert((e2so->type != nullptr) ^ (e2so->expr != nullptr));
    884                                 if ( ! (e1->type && e2so->type) )  return;
    885 
    886                                 // expression unification calls type unification (mutual recursion)
    887                                 result = unifyExact( e1->type, e2so->type, tenv, need, have, open, widen );
    888                         }
    889                 }
    890 
    891                 UnifyExpr( const ast::Expr * e2, ast::TypeEnvironment & env, ast::AssertionSet & need,
    892                         ast::AssertionSet & have, const ast::OpenVarSet & open, WidenMode widen )
    893                 : e2( e2 ), tenv(env), need(need), have(have), open(open), widen(widen), result(false) {}
    894         };
    895 
    896         static bool unify( const ast::Expr * e1, const ast::Expr * e2, ast::TypeEnvironment & env,
    897                 ast::AssertionSet & need, ast::AssertionSet & have, const ast::OpenVarSet & open,
    898                 WidenMode widen ) {
    899                 assert( e1 && e2 );
    900                 return ast::Pass<UnifyExpr>::read( e1, e2, env, need, have, open, widen );
    901         }
    902 
    903781        class Unify_new final : public ast::WithShortCircuiting {
    904782                const ast::Type * type2;
     
    942820                        if ( ! array2 ) return;
    943821
     822                        // to unify, array types must both be VLA or both not VLA and both must have a
     823                        // dimension expression or not have a dimension
    944824                        if ( array->isVarLen != array2->isVarLen ) return;
    945                         if ( (array->dimension != nullptr) != (array2->dimension != nullptr) ) return;
    946 
    947                         if ( array->dimension ) {
    948                                 assert( array2->dimension );
    949                                 // type unification calls expression unification (mutual recursion)
    950                                 if ( ! unify(array->dimension, array2->dimension,
    951                                     tenv, need, have, open, widen) ) return;
     825                        if ( ! array->isVarLen && ! array2->isVarLen
     826                                        && array->dimension && array2->dimension ) {
     827                                auto ce1 = array->dimension.as< ast::ConstantExpr >();
     828                                auto ce2 = array2->dimension.as< ast::ConstantExpr >();
     829
     830                                // see C11 Reference Manual 6.7.6.2.6
     831                                // two array types with size specifiers that are integer constant expressions are
     832                                // compatible if both size specifiers have the same constant value
     833                                if ( ce1 && ce2 && ce1->intValue() != ce2->intValue() ) return;
    952834                        }
    953835
  • src/Validate/GenericParameter.cpp

    r6065281f r3bf9d10  
    1616#include "GenericParameter.hpp"
    1717
     18#include "AST/Copy.hpp"
    1819#include "AST/Decl.hpp"
    1920#include "AST/Expr.hpp"
     
    164165
    165166struct TranslateDimensionCore :
    166                 public WithNoIdSymbolTable, public ast::WithGuards,
    167                 public ast::WithVisitorRef<TranslateDimensionCore> {
     167                public WithNoIdSymbolTable, public ast::WithGuards {
    168168
    169169        // SUIT: Struct- or Union- InstType
     
    190190
    191191        const ast::TypeDecl * postvisit( const ast::TypeDecl * decl );
    192         const ast::Type * postvisit( const ast::FunctionType * type );
    193         const ast::Type * postvisit( const ast::TypeInstType * type );
    194 
    195192        const ast::Expr * postvisit( const ast::DimensionExpr * expr );
    196193        const ast::Expr * postvisit( const ast::Expr * expr );
     
    198195};
    199196
    200 // Declaration of type variable: forall( [N] )  ->  forall( N & | sized( N ) )
    201197const ast::TypeDecl * TranslateDimensionCore::postvisit(
    202198                const ast::TypeDecl * decl ) {
     
    210206        }
    211207        return decl;
    212 }
    213 
    214 // Makes postvisit( TypeInstType ) get called on the entries of the function declaration's type's forall list.
    215 // Pass.impl.hpp's visit( FunctionType ) does not consider the forall entries to be child nodes.
    216 // Workaround is: during the current TranslateDimension pass, manually visit down there.
    217 const ast::Type * TranslateDimensionCore::postvisit(
    218                 const ast::FunctionType * type ) {
    219         visitor->maybe_accept( type, &ast::FunctionType::forall );
    220         return type;
    221 }
    222 
    223 // Use of type variable, assuming `forall( [N] )` in scope:  void (*)( foo( /*dimension*/ N ) & )  ->  void (*)( foo( /*dtype*/ N ) & )
    224 const ast::Type * TranslateDimensionCore::postvisit(
    225                 const ast::TypeInstType * type ) {
    226         if ( type->kind == ast::TypeDecl::Dimension ) {
    227                 auto mutType = ast::mutate( type );
    228                 mutType->kind = ast::TypeDecl::Dtype;
    229                 return mutType;
    230         }
    231         return type;
    232208}
    233209
  • tests/.expect/typedefRedef-ERR1.txt

    r6065281f r3bf9d10  
    11typedefRedef.cfa:75:25: warning: Compiled
    22typedefRedef.cfa:4:1 error: Cannot redefine typedef: Foo
    3 typedefRedef.cfa:31:1 error: Cannot redefine typedef: ARR
    43typedefRedef.cfa:65:1 error: Cannot redefine typedef: ARR
  • tests/array-container/.expect/dimexpr-match-c-ERRS.arm64.txt

    r6065281f r3bf9d10  
    1 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    2   Name: f
    3 ...to:
    4   Address of:
    5     Name: a
    6 
    7 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    8   Name: f
    9 ...to:
    10   Address of:
    11     Name: a
    12 
    13 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    14   Name: f
    15 ...to:
    16   Address of:
    17     Name: a
    18 
    19 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    20   Name: f
    21 ...to:
    22   Address of:
    23     Name: a
    24 
    25 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    26   Name: f
    27 ...to:
    28   Address of:
    29     Name: a
    30 
    31 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    32   Name: f
    33 ...to:
    34   Address of:
    35     Name: a
    36 
    37 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    38   Name: f
    39 ...to:
    40   Address of:
    41     Name: a
    42 
    43 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    44   Name: f
    45 ...to:
    46   Address of:
    47     Name: a
    48 
    49 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    50   Name: f
    51 ...to:
    52   Address of:
    53     Name: a
    54 
    55 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    56   Name: f
    57 ...to:
    58   Address of:
    59     Name: a
    60 
    61 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    62   Name: f
    63 ...to:
    64   Address of:
    65     Name: a
    66 
    67 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    68   Name: f
    69 ...to:
    70   Address of:
    71     Name: a
    72 
    73 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    74   Name: f
    75 ...to:
    76   Address of:
    77     Name: a
    78 
    79 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    80   Name: f
    81 ...to:
    82   Address of:
    83     Name: a
    84 
    85 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    86   Name: f
    87 ...to:
    88   Address of:
    89     Name: a
    90 
    91 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    92   Name: f
    93 ...to:
    94   Address of:
    95     Name: a
    96 
    97 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    98   Name: f
    99 ...to:
    100   Address of:
    101     Name: a
    102 
    103 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    104   Name: f
    105 ...to:
    106   Address of:
    107     Name: a
    108 
    1091array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1102  Name: f
     
    17870  Address of:
    17971    Name: a  InitAlternative: pointer to array of float with dimension of Generated Cast of:
    180     Constant Expression (7: signed int)
    181     ... with resolved type:
    182       signed int
    183   ... to:
    184     unsigned long int
    185   ... with resolved type:
    186     unsigned long int
    187 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    188   Address of:
    189     Name: a  InitAlternative: pointer to array of float with dimension of Generated Cast of:
    190     Constant Expression (7: signed int)
    191     ... with resolved type:
    192       signed int
    193   ... to:
    194     unsigned long int
    195   ... with resolved type:
    196     unsigned long int
    197 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    198   Address of:
    199     Name: a  InitAlternative: pointer to array of float with dimension of Generated Cast of:
    200     Constant Expression (7: signed int)
    201     ... with resolved type:
    202       signed int
    203   ... to:
    204     unsigned long int
    205   ... with resolved type:
    206     unsigned long int
    207 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    208   Address of:
    209     Name: a  InitAlternative: pointer to array of float with dimension of Generated Cast of:
    21072    Variable Expression: enu7: const instance of enum __anonymous0 with body
    21173    ... with resolved type:
     
    22789array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    22890  Address of:
    229     Name: a  InitAlternative: pointer to array of float with dimension of Generated Cast of:
    230     Variable Expression: enu7: const instance of enum __anonymous0 with body
    231     ... with resolved type:
    232       const instance of enum __anonymous0 with body
    233   ... to:
    234     unsigned long int
    235   ... with resolved type:
    236     unsigned long int
    237 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    238   Address of:
    239     Name: a  InitAlternative: pointer to array of float with dimension of Generated Cast of:
    240     Variable Expression: enu7: const instance of enum __anonymous0 with body
    241     ... with resolved type:
    242       const instance of enum __anonymous0 with body
    243   ... to:
    244     unsigned long int
    245   ... with resolved type:
    246     unsigned long int
    247 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    248   Address of:
    249     Name: a  InitAlternative: pointer to array of float with dimension of Generated Cast of:
    250     Variable Expression: enu7: const instance of enum __anonymous0 with body
    251     ... with resolved type:
    252       const instance of enum __anonymous0 with body
    253   ... to:
    254     unsigned long int
    255   ... with resolved type:
    256     unsigned long int
    257 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    258   Address of:
    259     Name: a  InitAlternative: pointer to array of float with dimension of Sizeof Expression on: instance of type dim7 (not function type)
    260   ... with resolved type:
    261     unsigned long int
    262 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    263   Address of:
    264     Name: a  InitAlternative: pointer to array of float with dimension of Sizeof Expression on: instance of type dim7 (not function type)
    265   ... with resolved type:
    266     unsigned long int
    267 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    268   Address of:
    269     Name: a  InitAlternative: pointer to array of float with dimension of Sizeof Expression on: instance of type dim7 (not function type)
    270   ... with resolved type:
    271     unsigned long int
    272 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    273   Address of:
    274     Name: a  InitAlternative: pointer to array of float with dimension of Sizeof Expression on: instance of type dim7 (not function type)
    275   ... with resolved type:
    276     unsigned long int
    277 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    278   Address of:
    279     Name: a  InitAlternative: pointer to array of float with dimension of Sizeof Expression on: instance of type dim7 (not function type)
    280   ... with resolved type:
    281     unsigned long int
    282 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    283   Address of:
    284     Name: a  InitAlternative: pointer to variable length array of float with dimension of Generated Cast of:
    285     Variable Expression: _array_dim16: const unsigned long int
    286     ... with resolved type:
    287       const unsigned long int
    288   ... to:
    289     unsigned long int
    290   ... with resolved type:
    291     unsigned long int
    292 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    293   Address of:
    294     Name: a  InitAlternative: pointer to variable length array of float with dimension of Generated Cast of:
    295     Variable Expression: _array_dim18: const unsigned long int
    296     ... with resolved type:
    297       const unsigned long int
    298   ... to:
    299     unsigned long int
    300   ... with resolved type:
    301     unsigned long int
    302 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    303   Address of:
    304     Name: a  InitAlternative: pointer to variable length array of float with dimension of Generated Cast of:
    305     Variable Expression: _array_dim19: const unsigned long int
    306     ... with resolved type:
    307       const unsigned long int
    308   ... to:
    309     unsigned long int
    310   ... with resolved type:
    311     unsigned long int
    312 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    313   Address of:
    314     Name: a  InitAlternative: pointer to variable length array of float with dimension of Generated Cast of:
    315     Variable Expression: _array_dim20: const unsigned long int
    316     ... with resolved type:
    317       const unsigned long int
    318   ... to:
    319     unsigned long int
    320   ... with resolved type:
    321     unsigned long int
    322 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    323   Address of:
    324     Name: a  InitAlternative: pointer to variable length array of float with dimension of Generated Cast of:
    325     Variable Expression: _array_dim21: const unsigned long int
    326     ... with resolved type:
    327       const unsigned long int
    328   ... to:
    329     unsigned long int
    330   ... with resolved type:
    331     unsigned long int
    332 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    333   Address of:
    334     Name: a  InitAlternative: pointer to variable length array of float with dimension of Generated Cast of:
    335     Variable Expression: _array_dim23: const unsigned long int
    336     ... with resolved type:
    337       const unsigned long int
    338   ... to:
    339     unsigned long int
    340   ... with resolved type:
    341     unsigned long int
    342 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    343   Address of:
    34491    Name: a  InitAlternative: pointer to variable length array of float with dimension of Generated Cast of:
    34592    Variable Expression: cpr7: const signed int
     
    363110  Address of:
    364111    Name: a  InitAlternative: pointer to variable length array of float with dimension of Generated Cast of:
    365     Variable Expression: cpr7: const signed int
    366     ... with resolved type:
    367       const signed int
    368   ... to:
    369     unsigned long int
    370   ... with resolved type:
    371     unsigned long int
    372 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    373   Address of:
    374     Name: a  InitAlternative: pointer to variable length array of float with dimension of Generated Cast of:
    375     Variable Expression: cpr7: const signed int
    376     ... with resolved type:
    377       const signed int
    378   ... to:
    379     unsigned long int
    380   ... with resolved type:
    381     unsigned long int
    382 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    383   Address of:
    384     Name: a  InitAlternative: pointer to variable length array of float with dimension of Generated Cast of:
    385     Variable Expression: cpr7: const signed int
    386     ... with resolved type:
    387       const signed int
    388   ... to:
    389     unsigned long int
    390   ... with resolved type:
    391     unsigned long int
    392 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    393   Name: ?=?
    394 ...to:
    395   Name: b
    396   Address of:
    397     Name: a
    398 
    399 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    400   Name: ?=?
    401 ...to:
    402   Name: b
    403   Address of:
    404     Name: a
    405 
    406 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    407   Name: ?=?
    408 ...to:
    409   Name: b
    410   Address of:
    411     Name: a
    412 
    413 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    414   Name: ?=?
    415 ...to:
    416   Name: b
    417   Address of:
    418     Name: a
    419 
    420 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    421   Name: ?=?
    422 ...to:
    423   Name: b
    424   Address of:
    425     Name: a
    426 
    427 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    428   Name: ?=?
    429 ...to:
    430   Name: b
    431   Address of:
    432     Name: a
    433 
    434 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    435   Name: ?=?
    436 ...to:
    437   Name: b
    438   Address of:
    439     Name: a
    440 
    441 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    442   Name: ?=?
    443 ...to:
    444   Name: b
    445   Address of:
    446     Name: a
    447 
    448 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    449   Name: ?=?
    450 ...to:
    451   Name: b
    452   Address of:
    453     Name: a
    454 
    455 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    456   Name: ?=?
    457 ...to:
    458   Name: b
    459   Address of:
    460     Name: a
    461 
    462 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    463   Name: ?=?
    464 ...to:
    465   Name: b
    466   Address of:
    467     Name: a
    468 
    469 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    470   Name: ?=?
    471 ...to:
    472   Name: b
    473   Address of:
    474     Name: a
    475 
    476 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    477   Name: ?=?
    478 ...to:
    479   Name: b
    480   Address of:
    481     Name: a
    482 
    483 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    484   Name: ?=?
    485 ...to:
    486   Name: b
    487   Address of:
    488     Name: a
    489 
    490 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    491   Name: ?=?
    492 ...to:
    493   Name: b
    494   Address of:
    495     Name: a
    496 
    497 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    498   Name: ?=?
    499 ...to:
    500   Name: b
    501   Address of:
    502     Name: a
    503 
    504 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    505   Name: ?=?
    506 ...to:
    507   Name: b
    508   Address of:
    509     Name: a
    510 
    511 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    512   Name: ?=?
    513 ...to:
    514   Name: b
    515   Address of:
    516     Name: a
    517 
    518 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    519   Name: ?=?
    520 ...to:
    521   Name: b
    522   Address of:
    523     Name: a
    524 
    525 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    526   Name: ?=?
    527 ...to:
    528   Name: b
    529   Address of:
    530     Name: a
    531 
    532 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    533   Name: ?=?
    534 ...to:
    535   Name: b
    536   Address of:
    537     Name: a
    538 
    539 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    540   Name: ?=?
    541 ...to:
    542   Name: b
    543   Address of:
    544     Name: a
    545 
    546 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    547   Name: ?=?
    548 ...to:
    549   Name: b
    550   Address of:
    551     Name: a
    552 
    553 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    554   Name: ?=?
    555 ...to:
    556   Name: b
    557   Address of:
    558     Name: a
    559 
    560 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    561   Name: ?=?
    562 ...to:
    563   Name: b
    564   Address of:
    565     Name: a
    566 
    567 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    568   Name: ?=?
    569 ...to:
    570   Name: b
    571   Address of:
    572     Name: a
    573 
    574 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    575   Name: ?=?
    576 ...to:
    577   Address of:
    578     Name: b
    579   Address of:
    580     Name: a
    581 
    582 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    583   Name: ?=?
    584 ...to:
    585   Address of:
    586     Name: b
    587   Address of:
    588     Name: a
    589 
    590 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    591   Name: ?=?
    592 ...to:
    593   Address of:
    594     Name: b
    595   Address of:
    596     Name: a
    597 
    598 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    599   Name: ?=?
    600 ...to:
    601   Address of:
    602     Name: b
    603   Address of:
    604     Name: a
    605 
    606 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    607   Name: ?=?
    608 ...to:
    609   Address of:
    610     Name: b
    611   Address of:
    612     Name: a
    613 
    614 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    615   Name: ?=?
    616 ...to:
    617   Address of:
    618     Name: b
    619   Address of:
    620     Name: a
    621 
    622 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    623   Name: ?=?
    624 ...to:
    625   Address of:
    626     Name: b
    627   Address of:
    628     Name: a
    629 
    630 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    631   Name: ?=?
    632 ...to:
    633   Address of:
    634     Name: b
    635   Address of:
    636     Name: a
    637 
    638 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    639   Name: ?=?
    640 ...to:
    641   Address of:
    642     Name: b
    643   Address of:
    644     Name: a
    645 
    646 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    647   Name: ?=?
    648 ...to:
    649   Address of:
    650     Name: b
    651   Address of:
    652     Name: a
    653 
    654 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    655   Name: ?=?
    656 ...to:
    657   Address of:
    658     Name: b
    659   Address of:
    660     Name: a
    661 
    662 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    663   Name: ?=?
    664 ...to:
    665   Address of:
    666     Name: b
    667   Address of:
    668     Name: a
    669 
    670 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    671   Name: ?=?
    672 ...to:
    673   Address of:
    674     Name: b
    675   Address of:
    676     Name: a
    677 
    678 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    679   Name: ?=?
    680 ...to:
    681   Address of:
    682     Name: b
    683   Address of:
    684     Name: a
    685 
    686 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    687   Name: ?=?
    688 ...to:
    689   Address of:
    690     Name: b
    691   Address of:
    692     Name: a
    693 
    694 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    695   Name: ?=?
    696 ...to:
    697   Address of:
    698     Name: b
    699   Address of:
    700     Name: a
    701 
    702 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    703   Name: ?=?
    704 ...to:
    705   Address of:
    706     Name: b
    707   Address of:
    708     Name: a
    709 
    710 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    711   Name: ?=?
    712 ...to:
    713   Address of:
    714     Name: b
    715   Address of:
    716     Name: a
    717 
    718 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    719   Name: ?=?
    720 ...to:
    721   Address of:
    722     Name: b
    723   Address of:
    724     Name: a
    725 
    726 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    727   Name: ?=?
    728 ...to:
    729   Address of:
    730     Name: b
    731   Address of:
    732     Name: a
    733 
    734 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    735   Name: ?=?
    736 ...to:
    737   Address of:
    738     Name: b
    739   Address of:
    740     Name: a
    741 
    742 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    743   Name: ?=?
    744 ...to:
    745   Address of:
    746     Name: b
    747   Address of:
    748     Name: a
    749 
    750 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    751   Name: ?=?
    752 ...to:
    753   Address of:
    754     Name: b
    755   Address of:
    756     Name: a
    757 
    758 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    759   Name: ?=?
    760 ...to:
    761   Address of:
    762     Name: b
    763   Address of:
    764     Name: a
    765 
    766 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    767   Name: ?=?
    768 ...to:
    769   Address of:
    770     Name: b
    771   Address of:
    772     Name: a
    773 
    774 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    775   Name: ?=?
    776 ...to:
    777   Address of:
    778     Name: b
    779   Address of:
    780     Name: a
    781 
     112    Variable Expression: mut7: signed int
     113    ... with resolved type:
     114      signed int
     115  ... to:
     116    unsigned long int
     117  ... with resolved type:
     118    unsigned long int
     119array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     120  Address of:
     121    Name: a  InitAlternative: pointer to variable length array of float with dimension of Generated Cast of:
     122    Variable Expression: mut7: signed int
     123    ... with resolved type:
     124      signed int
     125  ... to:
     126    unsigned long int
     127  ... with resolved type:
     128    unsigned long int
     129array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     130  Name: ?=?
     131...to:
     132  Name: b
     133  Address of:
     134    Name: a
     135
     136array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     137  Name: ?=?
     138...to:
     139  Name: b
     140  Address of:
     141    Name: a
     142
     143array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     144  Name: ?=?
     145...to:
     146  Name: b
     147  Address of:
     148    Name: a
     149
     150array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     151  Name: ?=?
     152...to:
     153  Name: b
     154  Address of:
     155    Name: a
     156
     157array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     158  Name: ?=?
     159...to:
     160  Name: b
     161  Address of:
     162    Name: a
     163
     164array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     165  Name: ?=?
     166...to:
     167  Name: b
     168  Address of:
     169    Name: a
     170
     171array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     172  Name: ?=?
     173...to:
     174  Name: b
     175  Address of:
     176    Name: a
     177
     178array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     179  Name: ?=?
     180...to:
     181  Name: b
     182  Address of:
     183    Name: a
     184
     185array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     186  Name: ?=?
     187...to:
     188  Address of:
     189    Name: b
     190  Address of:
     191    Name: a
     192
     193array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     194  Name: ?=?
     195...to:
     196  Address of:
     197    Name: b
     198  Address of:
     199    Name: a
     200
     201array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     202  Name: ?=?
     203...to:
     204  Address of:
     205    Name: b
     206  Address of:
     207    Name: a
     208
     209array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     210  Name: ?=?
     211...to:
     212  Address of:
     213    Name: b
     214  Address of:
     215    Name: a
     216
     217array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     218  Name: ?=?
     219...to:
     220  Address of:
     221    Name: b
     222  Address of:
     223    Name: a
     224
     225array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     226  Name: ?=?
     227...to:
     228  Address of:
     229    Name: b
     230  Address of:
     231    Name: a
     232
     233array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     234  Name: ?=?
     235...to:
     236  Address of:
     237    Name: b
     238  Address of:
     239    Name: a
     240
     241array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     242  Name: ?=?
     243...to:
     244  Address of:
     245    Name: b
     246  Address of:
     247    Name: a
     248
  • tests/array-container/.expect/dimexpr-match-c-ERRS.x64.txt

    r6065281f r3bf9d10  
    1 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    2   Name: f
    3 ...to:
    4   Address of:
    5     Name: a
    6 
    7 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    8   Name: f
    9 ...to:
    10   Address of:
    11     Name: a
    12 
    13 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    14   Name: f
    15 ...to:
    16   Address of:
    17     Name: a
    18 
    19 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    20   Name: f
    21 ...to:
    22   Address of:
    23     Name: a
    24 
    25 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    26   Name: f
    27 ...to:
    28   Address of:
    29     Name: a
    30 
    31 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    32   Name: f
    33 ...to:
    34   Address of:
    35     Name: a
    36 
    37 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    38   Name: f
    39 ...to:
    40   Address of:
    41     Name: a
    42 
    43 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    44   Name: f
    45 ...to:
    46   Address of:
    47     Name: a
    48 
    49 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    50   Name: f
    51 ...to:
    52   Address of:
    53     Name: a
    54 
    55 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    56   Name: f
    57 ...to:
    58   Address of:
    59     Name: a
    60 
    61 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    62   Name: f
    63 ...to:
    64   Address of:
    65     Name: a
    66 
    67 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    68   Name: f
    69 ...to:
    70   Address of:
    71     Name: a
    72 
    73 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    74   Name: f
    75 ...to:
    76   Address of:
    77     Name: a
    78 
    79 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    80   Name: f
    81 ...to:
    82   Address of:
    83     Name: a
    84 
    85 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    86   Name: f
    87 ...to:
    88   Address of:
    89     Name: a
    90 
    91 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    92   Name: f
    93 ...to:
    94   Address of:
    95     Name: a
    96 
    97 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    98   Name: f
    99 ...to:
    100   Address of:
    101     Name: a
    102 
    103 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    104   Name: f
    105 ...to:
    106   Address of:
    107     Name: a
    108 
    1091array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1102  Name: f
     
    17870  Address of:
    17971    Name: a  InitAlternative: pointer to array of float with dimension of Generated Cast of:
    180     Constant Expression (7: signed int)
    181     ... with resolved type:
    182       signed int
    183   ... to:
    184     unsigned long int
    185   ... with resolved type:
    186     unsigned long int
    187 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    188   Address of:
    189     Name: a  InitAlternative: pointer to array of float with dimension of Generated Cast of:
    190     Constant Expression (7: signed int)
    191     ... with resolved type:
    192       signed int
    193   ... to:
    194     unsigned long int
    195   ... with resolved type:
    196     unsigned long int
    197 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    198   Address of:
    199     Name: a  InitAlternative: pointer to array of float with dimension of Generated Cast of:
    200     Constant Expression (7: signed int)
    201     ... with resolved type:
    202       signed int
    203   ... to:
    204     unsigned long int
    205   ... with resolved type:
    206     unsigned long int
    207 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    208   Address of:
    209     Name: a  InitAlternative: pointer to array of float with dimension of Generated Cast of:
    21072    Variable Expression: enu7: const instance of enum __anonymous0 with body
    21173    ... with resolved type:
     
    22789array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    22890  Address of:
    229     Name: a  InitAlternative: pointer to array of float with dimension of Generated Cast of:
    230     Variable Expression: enu7: const instance of enum __anonymous0 with body
    231     ... with resolved type:
    232       const instance of enum __anonymous0 with body
    233   ... to:
    234     unsigned long int
    235   ... with resolved type:
    236     unsigned long int
    237 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    238   Address of:
    239     Name: a  InitAlternative: pointer to array of float with dimension of Generated Cast of:
    240     Variable Expression: enu7: const instance of enum __anonymous0 with body
    241     ... with resolved type:
    242       const instance of enum __anonymous0 with body
    243   ... to:
    244     unsigned long int
    245   ... with resolved type:
    246     unsigned long int
    247 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    248   Address of:
    249     Name: a  InitAlternative: pointer to array of float with dimension of Generated Cast of:
    250     Variable Expression: enu7: const instance of enum __anonymous0 with body
    251     ... with resolved type:
    252       const instance of enum __anonymous0 with body
    253   ... to:
    254     unsigned long int
    255   ... with resolved type:
    256     unsigned long int
    257 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    258   Address of:
    259     Name: a  InitAlternative: pointer to array of float with dimension of Sizeof Expression on: instance of type dim7 (not function type)
    260   ... with resolved type:
    261     unsigned long int
    262 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    263   Address of:
    264     Name: a  InitAlternative: pointer to array of float with dimension of Sizeof Expression on: instance of type dim7 (not function type)
    265   ... with resolved type:
    266     unsigned long int
    267 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    268   Address of:
    269     Name: a  InitAlternative: pointer to array of float with dimension of Sizeof Expression on: instance of type dim7 (not function type)
    270   ... with resolved type:
    271     unsigned long int
    272 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    273   Address of:
    274     Name: a  InitAlternative: pointer to array of float with dimension of Sizeof Expression on: instance of type dim7 (not function type)
    275   ... with resolved type:
    276     unsigned long int
    277 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    278   Address of:
    279     Name: a  InitAlternative: pointer to array of float with dimension of Sizeof Expression on: instance of type dim7 (not function type)
    280   ... with resolved type:
    281     unsigned long int
    282 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    283   Address of:
    284     Name: a  InitAlternative: pointer to variable length array of float with dimension of Generated Cast of:
    285     Variable Expression: _array_dim16: const unsigned long int
    286     ... with resolved type:
    287       const unsigned long int
    288   ... to:
    289     unsigned long int
    290   ... with resolved type:
    291     unsigned long int
    292 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    293   Address of:
    294     Name: a  InitAlternative: pointer to variable length array of float with dimension of Generated Cast of:
    295     Variable Expression: _array_dim18: const unsigned long int
    296     ... with resolved type:
    297       const unsigned long int
    298   ... to:
    299     unsigned long int
    300   ... with resolved type:
    301     unsigned long int
    302 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    303   Address of:
    304     Name: a  InitAlternative: pointer to variable length array of float with dimension of Generated Cast of:
    305     Variable Expression: _array_dim19: const unsigned long int
    306     ... with resolved type:
    307       const unsigned long int
    308   ... to:
    309     unsigned long int
    310   ... with resolved type:
    311     unsigned long int
    312 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    313   Address of:
    314     Name: a  InitAlternative: pointer to variable length array of float with dimension of Generated Cast of:
    315     Variable Expression: _array_dim20: const unsigned long int
    316     ... with resolved type:
    317       const unsigned long int
    318   ... to:
    319     unsigned long int
    320   ... with resolved type:
    321     unsigned long int
    322 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    323   Address of:
    324     Name: a  InitAlternative: pointer to variable length array of float with dimension of Generated Cast of:
    325     Variable Expression: _array_dim21: const unsigned long int
    326     ... with resolved type:
    327       const unsigned long int
    328   ... to:
    329     unsigned long int
    330   ... with resolved type:
    331     unsigned long int
    332 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    333   Address of:
    334     Name: a  InitAlternative: pointer to variable length array of float with dimension of Generated Cast of:
    335     Variable Expression: _array_dim23: const unsigned long int
    336     ... with resolved type:
    337       const unsigned long int
    338   ... to:
    339     unsigned long int
    340   ... with resolved type:
    341     unsigned long int
    342 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    343   Address of:
    34491    Name: a  InitAlternative: pointer to variable length array of float with dimension of Generated Cast of:
    34592    Variable Expression: cpr7: const signed int
     
    363110  Address of:
    364111    Name: a  InitAlternative: pointer to variable length array of float with dimension of Generated Cast of:
    365     Variable Expression: cpr7: const signed int
    366     ... with resolved type:
    367       const signed int
    368   ... to:
    369     unsigned long int
    370   ... with resolved type:
    371     unsigned long int
    372 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    373   Address of:
    374     Name: a  InitAlternative: pointer to variable length array of float with dimension of Generated Cast of:
    375     Variable Expression: cpr7: const signed int
    376     ... with resolved type:
    377       const signed int
    378   ... to:
    379     unsigned long int
    380   ... with resolved type:
    381     unsigned long int
    382 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    383   Address of:
    384     Name: a  InitAlternative: pointer to variable length array of float with dimension of Generated Cast of:
    385     Variable Expression: cpr7: const signed int
    386     ... with resolved type:
    387       const signed int
    388   ... to:
    389     unsigned long int
    390   ... with resolved type:
    391     unsigned long int
    392 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    393   Name: ?=?
    394 ...to:
    395   Name: b
    396   Address of:
    397     Name: a
    398 
    399 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    400   Name: ?=?
    401 ...to:
    402   Name: b
    403   Address of:
    404     Name: a
    405 
    406 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    407   Name: ?=?
    408 ...to:
    409   Name: b
    410   Address of:
    411     Name: a
    412 
    413 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    414   Name: ?=?
    415 ...to:
    416   Name: b
    417   Address of:
    418     Name: a
    419 
    420 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    421   Name: ?=?
    422 ...to:
    423   Name: b
    424   Address of:
    425     Name: a
    426 
    427 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    428   Name: ?=?
    429 ...to:
    430   Name: b
    431   Address of:
    432     Name: a
    433 
    434 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    435   Name: ?=?
    436 ...to:
    437   Name: b
    438   Address of:
    439     Name: a
    440 
    441 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    442   Name: ?=?
    443 ...to:
    444   Name: b
    445   Address of:
    446     Name: a
    447 
    448 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    449   Name: ?=?
    450 ...to:
    451   Name: b
    452   Address of:
    453     Name: a
    454 
    455 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    456   Name: ?=?
    457 ...to:
    458   Name: b
    459   Address of:
    460     Name: a
    461 
    462 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    463   Name: ?=?
    464 ...to:
    465   Name: b
    466   Address of:
    467     Name: a
    468 
    469 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    470   Name: ?=?
    471 ...to:
    472   Name: b
    473   Address of:
    474     Name: a
    475 
    476 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    477   Name: ?=?
    478 ...to:
    479   Name: b
    480   Address of:
    481     Name: a
    482 
    483 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    484   Name: ?=?
    485 ...to:
    486   Name: b
    487   Address of:
    488     Name: a
    489 
    490 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    491   Name: ?=?
    492 ...to:
    493   Name: b
    494   Address of:
    495     Name: a
    496 
    497 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    498   Name: ?=?
    499 ...to:
    500   Name: b
    501   Address of:
    502     Name: a
    503 
    504 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    505   Name: ?=?
    506 ...to:
    507   Name: b
    508   Address of:
    509     Name: a
    510 
    511 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    512   Name: ?=?
    513 ...to:
    514   Name: b
    515   Address of:
    516     Name: a
    517 
    518 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    519   Name: ?=?
    520 ...to:
    521   Name: b
    522   Address of:
    523     Name: a
    524 
    525 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    526   Name: ?=?
    527 ...to:
    528   Name: b
    529   Address of:
    530     Name: a
    531 
    532 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    533   Name: ?=?
    534 ...to:
    535   Name: b
    536   Address of:
    537     Name: a
    538 
    539 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    540   Name: ?=?
    541 ...to:
    542   Name: b
    543   Address of:
    544     Name: a
    545 
    546 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    547   Name: ?=?
    548 ...to:
    549   Name: b
    550   Address of:
    551     Name: a
    552 
    553 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    554   Name: ?=?
    555 ...to:
    556   Name: b
    557   Address of:
    558     Name: a
    559 
    560 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    561   Name: ?=?
    562 ...to:
    563   Name: b
    564   Address of:
    565     Name: a
    566 
    567 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    568   Name: ?=?
    569 ...to:
    570   Name: b
    571   Address of:
    572     Name: a
    573 
    574 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    575   Name: ?=?
    576 ...to:
    577   Address of:
    578     Name: b
    579   Address of:
    580     Name: a
    581 
    582 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    583   Name: ?=?
    584 ...to:
    585   Address of:
    586     Name: b
    587   Address of:
    588     Name: a
    589 
    590 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    591   Name: ?=?
    592 ...to:
    593   Address of:
    594     Name: b
    595   Address of:
    596     Name: a
    597 
    598 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    599   Name: ?=?
    600 ...to:
    601   Address of:
    602     Name: b
    603   Address of:
    604     Name: a
    605 
    606 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    607   Name: ?=?
    608 ...to:
    609   Address of:
    610     Name: b
    611   Address of:
    612     Name: a
    613 
    614 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    615   Name: ?=?
    616 ...to:
    617   Address of:
    618     Name: b
    619   Address of:
    620     Name: a
    621 
    622 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    623   Name: ?=?
    624 ...to:
    625   Address of:
    626     Name: b
    627   Address of:
    628     Name: a
    629 
    630 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    631   Name: ?=?
    632 ...to:
    633   Address of:
    634     Name: b
    635   Address of:
    636     Name: a
    637 
    638 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    639   Name: ?=?
    640 ...to:
    641   Address of:
    642     Name: b
    643   Address of:
    644     Name: a
    645 
    646 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    647   Name: ?=?
    648 ...to:
    649   Address of:
    650     Name: b
    651   Address of:
    652     Name: a
    653 
    654 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    655   Name: ?=?
    656 ...to:
    657   Address of:
    658     Name: b
    659   Address of:
    660     Name: a
    661 
    662 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    663   Name: ?=?
    664 ...to:
    665   Address of:
    666     Name: b
    667   Address of:
    668     Name: a
    669 
    670 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    671   Name: ?=?
    672 ...to:
    673   Address of:
    674     Name: b
    675   Address of:
    676     Name: a
    677 
    678 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    679   Name: ?=?
    680 ...to:
    681   Address of:
    682     Name: b
    683   Address of:
    684     Name: a
    685 
    686 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    687   Name: ?=?
    688 ...to:
    689   Address of:
    690     Name: b
    691   Address of:
    692     Name: a
    693 
    694 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    695   Name: ?=?
    696 ...to:
    697   Address of:
    698     Name: b
    699   Address of:
    700     Name: a
    701 
    702 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    703   Name: ?=?
    704 ...to:
    705   Address of:
    706     Name: b
    707   Address of:
    708     Name: a
    709 
    710 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    711   Name: ?=?
    712 ...to:
    713   Address of:
    714     Name: b
    715   Address of:
    716     Name: a
    717 
    718 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    719   Name: ?=?
    720 ...to:
    721   Address of:
    722     Name: b
    723   Address of:
    724     Name: a
    725 
    726 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    727   Name: ?=?
    728 ...to:
    729   Address of:
    730     Name: b
    731   Address of:
    732     Name: a
    733 
    734 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    735   Name: ?=?
    736 ...to:
    737   Address of:
    738     Name: b
    739   Address of:
    740     Name: a
    741 
    742 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    743   Name: ?=?
    744 ...to:
    745   Address of:
    746     Name: b
    747   Address of:
    748     Name: a
    749 
    750 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    751   Name: ?=?
    752 ...to:
    753   Address of:
    754     Name: b
    755   Address of:
    756     Name: a
    757 
    758 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    759   Name: ?=?
    760 ...to:
    761   Address of:
    762     Name: b
    763   Address of:
    764     Name: a
    765 
    766 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    767   Name: ?=?
    768 ...to:
    769   Address of:
    770     Name: b
    771   Address of:
    772     Name: a
    773 
    774 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    775   Name: ?=?
    776 ...to:
    777   Address of:
    778     Name: b
    779   Address of:
    780     Name: a
    781 
     112    Variable Expression: mut7: signed int
     113    ... with resolved type:
     114      signed int
     115  ... to:
     116    unsigned long int
     117  ... with resolved type:
     118    unsigned long int
     119array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     120  Address of:
     121    Name: a  InitAlternative: pointer to variable length array of float with dimension of Generated Cast of:
     122    Variable Expression: mut7: signed int
     123    ... with resolved type:
     124      signed int
     125  ... to:
     126    unsigned long int
     127  ... with resolved type:
     128    unsigned long int
     129array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     130  Name: ?=?
     131...to:
     132  Name: b
     133  Address of:
     134    Name: a
     135
     136array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     137  Name: ?=?
     138...to:
     139  Name: b
     140  Address of:
     141    Name: a
     142
     143array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     144  Name: ?=?
     145...to:
     146  Name: b
     147  Address of:
     148    Name: a
     149
     150array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     151  Name: ?=?
     152...to:
     153  Name: b
     154  Address of:
     155    Name: a
     156
     157array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     158  Name: ?=?
     159...to:
     160  Name: b
     161  Address of:
     162    Name: a
     163
     164array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     165  Name: ?=?
     166...to:
     167  Name: b
     168  Address of:
     169    Name: a
     170
     171array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     172  Name: ?=?
     173...to:
     174  Name: b
     175  Address of:
     176    Name: a
     177
     178array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     179  Name: ?=?
     180...to:
     181  Name: b
     182  Address of:
     183    Name: a
     184
     185array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     186  Name: ?=?
     187...to:
     188  Address of:
     189    Name: b
     190  Address of:
     191    Name: a
     192
     193array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     194  Name: ?=?
     195...to:
     196  Address of:
     197    Name: b
     198  Address of:
     199    Name: a
     200
     201array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     202  Name: ?=?
     203...to:
     204  Address of:
     205    Name: b
     206  Address of:
     207    Name: a
     208
     209array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     210  Name: ?=?
     211...to:
     212  Address of:
     213    Name: b
     214  Address of:
     215    Name: a
     216
     217array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     218  Name: ?=?
     219...to:
     220  Address of:
     221    Name: b
     222  Address of:
     223    Name: a
     224
     225array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     226  Name: ?=?
     227...to:
     228  Address of:
     229    Name: b
     230  Address of:
     231    Name: a
     232
     233array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     234  Name: ?=?
     235...to:
     236  Address of:
     237    Name: b
     238  Address of:
     239    Name: a
     240
     241array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     242  Name: ?=?
     243...to:
     244  Address of:
     245    Name: b
     246  Address of:
     247    Name: a
     248
  • tests/array-container/.expect/dimexpr-match-c-ERRS.x86.txt

    r6065281f r3bf9d10  
    1 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    2   Name: f
    3 ...to:
    4   Address of:
    5     Name: a
    6 
    7 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    8   Name: f
    9 ...to:
    10   Address of:
    11     Name: a
    12 
    13 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    14   Name: f
    15 ...to:
    16   Address of:
    17     Name: a
    18 
    19 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    20   Name: f
    21 ...to:
    22   Address of:
    23     Name: a
    24 
    25 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    26   Name: f
    27 ...to:
    28   Address of:
    29     Name: a
    30 
    31 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    32   Name: f
    33 ...to:
    34   Address of:
    35     Name: a
    36 
    37 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    38   Name: f
    39 ...to:
    40   Address of:
    41     Name: a
    42 
    43 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    44   Name: f
    45 ...to:
    46   Address of:
    47     Name: a
    48 
    49 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    50   Name: f
    51 ...to:
    52   Address of:
    53     Name: a
    54 
    55 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    56   Name: f
    57 ...to:
    58   Address of:
    59     Name: a
    60 
    61 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    62   Name: f
    63 ...to:
    64   Address of:
    65     Name: a
    66 
    67 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    68   Name: f
    69 ...to:
    70   Address of:
    71     Name: a
    72 
    73 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    74   Name: f
    75 ...to:
    76   Address of:
    77     Name: a
    78 
    79 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    80   Name: f
    81 ...to:
    82   Address of:
    83     Name: a
    84 
    85 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    86   Name: f
    87 ...to:
    88   Address of:
    89     Name: a
    90 
    91 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    92   Name: f
    93 ...to:
    94   Address of:
    95     Name: a
    96 
    97 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    98   Name: f
    99 ...to:
    100   Address of:
    101     Name: a
    102 
    103 array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    104   Name: f
    105 ...to:
    106   Address of:
    107     Name: a
    108 
    1091array-container/dimexpr-match-c.cfa:30:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1102  Name: f
     
    17870  Address of:
    17971    Name: a  InitAlternative: pointer to array of float with dimension of Generated Cast of:
    180     Constant Expression (7: signed int)
    181     ... with resolved type:
    182       signed int
    183   ... to:
    184     unsigned int
    185   ... with resolved type:
    186     unsigned int
    187 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    188   Address of:
    189     Name: a  InitAlternative: pointer to array of float with dimension of Generated Cast of:
    190     Constant Expression (7: signed int)
    191     ... with resolved type:
    192       signed int
    193   ... to:
    194     unsigned int
    195   ... with resolved type:
    196     unsigned int
    197 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    198   Address of:
    199     Name: a  InitAlternative: pointer to array of float with dimension of Generated Cast of:
    200     Constant Expression (7: signed int)
    201     ... with resolved type:
    202       signed int
    203   ... to:
    204     unsigned int
    205   ... with resolved type:
    206     unsigned int
    207 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    208   Address of:
    209     Name: a  InitAlternative: pointer to array of float with dimension of Generated Cast of:
    210     Sizeof Expression on: instance of type dim7 (not function type)
    211     ... with resolved type:
    212       unsigned long int
    213   ... to:
    214     unsigned int
    215   ... with resolved type:
    216     unsigned int
    217 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    218   Address of:
    219     Name: a  InitAlternative: pointer to array of float with dimension of Generated Cast of:
    220     Sizeof Expression on: instance of type dim7 (not function type)
    221     ... with resolved type:
    222       unsigned long int
    223   ... to:
    224     unsigned int
    225   ... with resolved type:
    226     unsigned int
    227 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    228   Address of:
    229     Name: a  InitAlternative: pointer to array of float with dimension of Generated Cast of:
    230     Sizeof Expression on: instance of type dim7 (not function type)
    231     ... with resolved type:
    232       unsigned long int
    233   ... to:
    234     unsigned int
    235   ... with resolved type:
    236     unsigned int
    237 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    238   Address of:
    239     Name: a  InitAlternative: pointer to array of float with dimension of Generated Cast of:
    240     Sizeof Expression on: instance of type dim7 (not function type)
    241     ... with resolved type:
    242       unsigned long int
    243   ... to:
    244     unsigned int
    245   ... with resolved type:
    246     unsigned int
    247 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    248   Address of:
    249     Name: a  InitAlternative: pointer to array of float with dimension of Generated Cast of:
    250     Sizeof Expression on: instance of type dim7 (not function type)
    251     ... with resolved type:
    252       unsigned long int
    253   ... to:
    254     unsigned int
    255   ... with resolved type:
    256     unsigned int
    257 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    258   Address of:
    259     Name: a  InitAlternative: pointer to array of float with dimension of Generated Cast of:
    26072    Variable Expression: enu7: const instance of enum __anonymous0 with body
    26173    ... with resolved type:
     
    27789array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    27890  Address of:
    279     Name: a  InitAlternative: pointer to array of float with dimension of Generated Cast of:
    280     Variable Expression: enu7: const instance of enum __anonymous0 with body
    281     ... with resolved type:
    282       const instance of enum __anonymous0 with body
    283   ... to:
    284     unsigned int
    285   ... with resolved type:
    286     unsigned int
    287 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    288   Address of:
    289     Name: a  InitAlternative: pointer to array of float with dimension of Generated Cast of:
    290     Variable Expression: enu7: const instance of enum __anonymous0 with body
    291     ... with resolved type:
    292       const instance of enum __anonymous0 with body
    293   ... to:
    294     unsigned int
    295   ... with resolved type:
    296     unsigned int
    297 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    298   Address of:
    299     Name: a  InitAlternative: pointer to array of float with dimension of Generated Cast of:
    300     Variable Expression: enu7: const instance of enum __anonymous0 with body
    301     ... with resolved type:
    302       const instance of enum __anonymous0 with body
    303   ... to:
    304     unsigned int
    305   ... with resolved type:
    306     unsigned int
    307 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    308   Address of:
    309     Name: a  InitAlternative: pointer to variable length array of float with dimension of Generated Cast of:
    310     Variable Expression: _array_dim16: const unsigned int
    311     ... with resolved type:
    312       const unsigned int
    313   ... to:
    314     unsigned int
    315   ... with resolved type:
    316     unsigned int
    317 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    318   Address of:
    319     Name: a  InitAlternative: pointer to variable length array of float with dimension of Generated Cast of:
    320     Variable Expression: _array_dim18: const unsigned int
    321     ... with resolved type:
    322       const unsigned int
    323   ... to:
    324     unsigned int
    325   ... with resolved type:
    326     unsigned int
    327 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    328   Address of:
    329     Name: a  InitAlternative: pointer to variable length array of float with dimension of Generated Cast of:
    330     Variable Expression: _array_dim19: const unsigned int
    331     ... with resolved type:
    332       const unsigned int
    333   ... to:
    334     unsigned int
    335   ... with resolved type:
    336     unsigned int
    337 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    338   Address of:
    339     Name: a  InitAlternative: pointer to variable length array of float with dimension of Generated Cast of:
    340     Variable Expression: _array_dim20: const unsigned int
    341     ... with resolved type:
    342       const unsigned int
    343   ... to:
    344     unsigned int
    345   ... with resolved type:
    346     unsigned int
    347 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    348   Address of:
    349     Name: a  InitAlternative: pointer to variable length array of float with dimension of Generated Cast of:
    350     Variable Expression: _array_dim21: const unsigned int
    351     ... with resolved type:
    352       const unsigned int
    353   ... to:
    354     unsigned int
    355   ... with resolved type:
    356     unsigned int
    357 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    358   Address of:
    359     Name: a  InitAlternative: pointer to variable length array of float with dimension of Generated Cast of:
    360     Variable Expression: _array_dim23: const unsigned int
    361     ... with resolved type:
    362       const unsigned int
    363   ... to:
    364     unsigned int
    365   ... with resolved type:
    366     unsigned int
    367 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    368   Address of:
    36991    Name: a  InitAlternative: pointer to variable length array of float with dimension of Generated Cast of:
    37092    Variable Expression: cpr7: const signed int
     
    388110  Address of:
    389111    Name: a  InitAlternative: pointer to variable length array of float with dimension of Generated Cast of:
    390     Variable Expression: cpr7: const signed int
    391     ... with resolved type:
    392       const signed int
    393   ... to:
    394     unsigned int
    395   ... with resolved type:
    396     unsigned int
    397 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    398   Address of:
    399     Name: a  InitAlternative: pointer to variable length array of float with dimension of Generated Cast of:
    400     Variable Expression: cpr7: const signed int
    401     ... with resolved type:
    402       const signed int
    403   ... to:
    404     unsigned int
    405   ... with resolved type:
    406     unsigned int
    407 array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    408   Address of:
    409     Name: a  InitAlternative: pointer to variable length array of float with dimension of Generated Cast of:
    410     Variable Expression: cpr7: const signed int
    411     ... with resolved type:
    412       const signed int
    413   ... to:
    414     unsigned int
    415   ... with resolved type:
    416     unsigned int
    417 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    418   Name: ?=?
    419 ...to:
    420   Name: b
    421   Address of:
    422     Name: a
    423 
    424 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    425   Name: ?=?
    426 ...to:
    427   Name: b
    428   Address of:
    429     Name: a
    430 
    431 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    432   Name: ?=?
    433 ...to:
    434   Name: b
    435   Address of:
    436     Name: a
    437 
    438 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    439   Name: ?=?
    440 ...to:
    441   Name: b
    442   Address of:
    443     Name: a
    444 
    445 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    446   Name: ?=?
    447 ...to:
    448   Name: b
    449   Address of:
    450     Name: a
    451 
    452 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    453   Name: ?=?
    454 ...to:
    455   Name: b
    456   Address of:
    457     Name: a
    458 
    459 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    460   Name: ?=?
    461 ...to:
    462   Name: b
    463   Address of:
    464     Name: a
    465 
    466 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    467   Name: ?=?
    468 ...to:
    469   Name: b
    470   Address of:
    471     Name: a
    472 
    473 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    474   Name: ?=?
    475 ...to:
    476   Name: b
    477   Address of:
    478     Name: a
    479 
    480 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    481   Name: ?=?
    482 ...to:
    483   Name: b
    484   Address of:
    485     Name: a
    486 
    487 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    488   Name: ?=?
    489 ...to:
    490   Name: b
    491   Address of:
    492     Name: a
    493 
    494 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    495   Name: ?=?
    496 ...to:
    497   Name: b
    498   Address of:
    499     Name: a
    500 
    501 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    502   Name: ?=?
    503 ...to:
    504   Name: b
    505   Address of:
    506     Name: a
    507 
    508 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    509   Name: ?=?
    510 ...to:
    511   Name: b
    512   Address of:
    513     Name: a
    514 
    515 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    516   Name: ?=?
    517 ...to:
    518   Name: b
    519   Address of:
    520     Name: a
    521 
    522 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    523   Name: ?=?
    524 ...to:
    525   Name: b
    526   Address of:
    527     Name: a
    528 
    529 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    530   Name: ?=?
    531 ...to:
    532   Name: b
    533   Address of:
    534     Name: a
    535 
    536 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    537   Name: ?=?
    538 ...to:
    539   Name: b
    540   Address of:
    541     Name: a
    542 
    543 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    544   Name: ?=?
    545 ...to:
    546   Name: b
    547   Address of:
    548     Name: a
    549 
    550 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    551   Name: ?=?
    552 ...to:
    553   Name: b
    554   Address of:
    555     Name: a
    556 
    557 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    558   Name: ?=?
    559 ...to:
    560   Name: b
    561   Address of:
    562     Name: a
    563 
    564 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    565   Name: ?=?
    566 ...to:
    567   Name: b
    568   Address of:
    569     Name: a
    570 
    571 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    572   Name: ?=?
    573 ...to:
    574   Name: b
    575   Address of:
    576     Name: a
    577 
    578 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    579   Name: ?=?
    580 ...to:
    581   Name: b
    582   Address of:
    583     Name: a
    584 
    585 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    586   Name: ?=?
    587 ...to:
    588   Name: b
    589   Address of:
    590     Name: a
    591 
    592 array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    593   Name: ?=?
    594 ...to:
    595   Name: b
    596   Address of:
    597     Name: a
    598 
    599 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    600   Name: ?=?
    601 ...to:
    602   Address of:
    603     Name: b
    604   Address of:
    605     Name: a
    606 
    607 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    608   Name: ?=?
    609 ...to:
    610   Address of:
    611     Name: b
    612   Address of:
    613     Name: a
    614 
    615 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    616   Name: ?=?
    617 ...to:
    618   Address of:
    619     Name: b
    620   Address of:
    621     Name: a
    622 
    623 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    624   Name: ?=?
    625 ...to:
    626   Address of:
    627     Name: b
    628   Address of:
    629     Name: a
    630 
    631 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    632   Name: ?=?
    633 ...to:
    634   Address of:
    635     Name: b
    636   Address of:
    637     Name: a
    638 
    639 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    640   Name: ?=?
    641 ...to:
    642   Address of:
    643     Name: b
    644   Address of:
    645     Name: a
    646 
    647 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    648   Name: ?=?
    649 ...to:
    650   Address of:
    651     Name: b
    652   Address of:
    653     Name: a
    654 
    655 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    656   Name: ?=?
    657 ...to:
    658   Address of:
    659     Name: b
    660   Address of:
    661     Name: a
    662 
    663 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    664   Name: ?=?
    665 ...to:
    666   Address of:
    667     Name: b
    668   Address of:
    669     Name: a
    670 
    671 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    672   Name: ?=?
    673 ...to:
    674   Address of:
    675     Name: b
    676   Address of:
    677     Name: a
    678 
    679 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    680   Name: ?=?
    681 ...to:
    682   Address of:
    683     Name: b
    684   Address of:
    685     Name: a
    686 
    687 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    688   Name: ?=?
    689 ...to:
    690   Address of:
    691     Name: b
    692   Address of:
    693     Name: a
    694 
    695 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    696   Name: ?=?
    697 ...to:
    698   Address of:
    699     Name: b
    700   Address of:
    701     Name: a
    702 
    703 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    704   Name: ?=?
    705 ...to:
    706   Address of:
    707     Name: b
    708   Address of:
    709     Name: a
    710 
    711 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    712   Name: ?=?
    713 ...to:
    714   Address of:
    715     Name: b
    716   Address of:
    717     Name: a
    718 
    719 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    720   Name: ?=?
    721 ...to:
    722   Address of:
    723     Name: b
    724   Address of:
    725     Name: a
    726 
    727 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    728   Name: ?=?
    729 ...to:
    730   Address of:
    731     Name: b
    732   Address of:
    733     Name: a
    734 
    735 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    736   Name: ?=?
    737 ...to:
    738   Address of:
    739     Name: b
    740   Address of:
    741     Name: a
    742 
    743 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    744   Name: ?=?
    745 ...to:
    746   Address of:
    747     Name: b
    748   Address of:
    749     Name: a
    750 
    751 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    752   Name: ?=?
    753 ...to:
    754   Address of:
    755     Name: b
    756   Address of:
    757     Name: a
    758 
    759 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    760   Name: ?=?
    761 ...to:
    762   Address of:
    763     Name: b
    764   Address of:
    765     Name: a
    766 
    767 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    768   Name: ?=?
    769 ...to:
    770   Address of:
    771     Name: b
    772   Address of:
    773     Name: a
    774 
    775 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    776   Name: ?=?
    777 ...to:
    778   Address of:
    779     Name: b
    780   Address of:
    781     Name: a
    782 
    783 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    784   Name: ?=?
    785 ...to:
    786   Address of:
    787     Name: b
    788   Address of:
    789     Name: a
    790 
    791 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    792   Name: ?=?
    793 ...to:
    794   Address of:
    795     Name: b
    796   Address of:
    797     Name: a
    798 
    799 array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    800   Name: ?=?
    801 ...to:
    802   Address of:
    803     Name: b
    804   Address of:
    805     Name: a
    806 
     112    Variable Expression: mut7: signed int
     113    ... with resolved type:
     114      signed int
     115  ... to:
     116    unsigned int
     117  ... with resolved type:
     118    unsigned int
     119array-container/dimexpr-match-c.cfa:38:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     120  Address of:
     121    Name: a  InitAlternative: pointer to variable length array of float with dimension of Generated Cast of:
     122    Variable Expression: mut7: signed int
     123    ... with resolved type:
     124      signed int
     125  ... to:
     126    unsigned int
     127  ... with resolved type:
     128    unsigned int
     129array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     130  Name: ?=?
     131...to:
     132  Name: b
     133  Address of:
     134    Name: a
     135
     136array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     137  Name: ?=?
     138...to:
     139  Name: b
     140  Address of:
     141    Name: a
     142
     143array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     144  Name: ?=?
     145...to:
     146  Name: b
     147  Address of:
     148    Name: a
     149
     150array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     151  Name: ?=?
     152...to:
     153  Name: b
     154  Address of:
     155    Name: a
     156
     157array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     158  Name: ?=?
     159...to:
     160  Name: b
     161  Address of:
     162    Name: a
     163
     164array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     165  Name: ?=?
     166...to:
     167  Name: b
     168  Address of:
     169    Name: a
     170
     171array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     172  Name: ?=?
     173...to:
     174  Name: b
     175  Address of:
     176    Name: a
     177
     178array-container/dimexpr-match-c.cfa:47:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     179  Name: ?=?
     180...to:
     181  Name: b
     182  Address of:
     183    Name: a
     184
     185array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     186  Name: ?=?
     187...to:
     188  Address of:
     189    Name: b
     190  Address of:
     191    Name: a
     192
     193array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     194  Name: ?=?
     195...to:
     196  Address of:
     197    Name: b
     198  Address of:
     199    Name: a
     200
     201array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     202  Name: ?=?
     203...to:
     204  Address of:
     205    Name: b
     206  Address of:
     207    Name: a
     208
     209array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     210  Name: ?=?
     211...to:
     212  Address of:
     213    Name: b
     214  Address of:
     215    Name: a
     216
     217array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     218  Name: ?=?
     219...to:
     220  Address of:
     221    Name: b
     222  Address of:
     223    Name: a
     224
     225array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     226  Name: ?=?
     227...to:
     228  Address of:
     229    Name: b
     230  Address of:
     231    Name: a
     232
     233array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     234  Name: ?=?
     235...to:
     236  Address of:
     237    Name: b
     238  Address of:
     239    Name: a
     240
     241array-container/dimexpr-match-c.cfa:77:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     242  Name: ?=?
     243...to:
     244  Address of:
     245    Name: b
     246  Address of:
     247    Name: a
     248
  • tests/array-container/.expect/dimexpr-match-c.txt

    r6065281f r3bf9d10  
    1313skip STA NE UNS, L=enu7, R=mut42
    1414done DYN EQ DYN, L=cpr7, R=cpr7
    15 skip DYN NE DYN, L=cpr7, R=cpr42
     15done DYN NE DYN, L=cpr7, R=cpr42
    1616skip DYN NE STA, L=cpr7, R=42
    1717skip DYN NE STA, L=cpr7, R=enu42
    18 skip DYN NE UNS, L=cpr7, R=mut42
    19 skip UNS EQ UNS, L=mut7, R=mut7
    20 skip UNS NE UNS, L=mut7, R=mut42
     18done DYN NE UNS, L=cpr7, R=mut42
     19done UNS EQ UNS, L=mut7, R=mut7
     20done UNS NE UNS, L=mut7, R=mut42
    2121skip UNS NE STA, L=mut7, R=42
    2222skip UNS NE STA, L=mut7, R=enu42
    23 skip UNS NE DYN, L=mut7, R=cpr42
    24 skip STA NE DYN, L=7, R=dim42
    25 skip STA NE DYN, L=enu7, R=dim42
    26 skip DYN NE DYN, L=cpr7, R=dim42
    27 done DYN EQ DYN, L=dim7, R=dim7
    28 skip DYN NE DYN, L=dim7, R=dim42
    29 skip DYN NE STA, L=dim7, R=42
    30 skip DYN NE STA, L=dim7, R=enu42
    31 skip DYN NE DYN, L=dim7, R=cpr42
    32 skip DYN NE UNS, L=dim7, R=mut42
    33 skip UNS NE DYN, L=mut7, R=dim42
     23done UNS NE DYN, L=mut7, R=cpr42
    3424---- PTRVAR_INIT:   { float a[__R__]; float (*b)[__L__] = & a; }
    3525done STA EQ STA, L=7, R=7
     
    4636skip STA NE UNS, L=enu7, R=mut42
    4737done DYN EQ DYN, L=cpr7, R=cpr7
    48 skip DYN NE DYN, L=cpr7, R=cpr42
     38done DYN NE DYN, L=cpr7, R=cpr42
    4939skip DYN NE STA, L=cpr7, R=42
    5040skip DYN NE STA, L=cpr7, R=enu42
    51 skip DYN NE UNS, L=cpr7, R=mut42
    52 skip UNS EQ UNS, L=mut7, R=mut7
    53 skip UNS NE UNS, L=mut7, R=mut42
     41done DYN NE UNS, L=cpr7, R=mut42
     42done UNS EQ UNS, L=mut7, R=mut7
     43done UNS NE UNS, L=mut7, R=mut42
    5444skip UNS NE STA, L=mut7, R=42
    5545skip UNS NE STA, L=mut7, R=enu42
    56 skip UNS NE DYN, L=mut7, R=cpr42
    57 skip STA NE DYN, L=7, R=dim42
    58 skip STA NE DYN, L=enu7, R=dim42
    59 skip DYN NE DYN, L=cpr7, R=dim42
    60 done DYN EQ DYN, L=dim7, R=dim7
    61 skip DYN NE DYN, L=dim7, R=dim42
    62 skip DYN NE STA, L=dim7, R=42
    63 skip DYN NE STA, L=dim7, R=enu42
    64 skip DYN NE DYN, L=dim7, R=cpr42
    65 skip DYN NE UNS, L=dim7, R=mut42
    66 skip UNS NE DYN, L=mut7, R=dim42
     46done UNS NE DYN, L=mut7, R=cpr42
    6747---- PTRVAR_ASGN:   { float a[__R__]; float (*b)[__L__] = 0p; b = & a; }
    6848done STA EQ STA, L=7, R=7
     
    7959skip STA NE UNS, L=enu7, R=mut42
    8060done DYN EQ DYN, L=cpr7, R=cpr7
    81 skip DYN NE DYN, L=cpr7, R=cpr42
     61done DYN NE DYN, L=cpr7, R=cpr42
    8262skip DYN NE STA, L=cpr7, R=42
    8363skip DYN NE STA, L=cpr7, R=enu42
    84 skip DYN NE UNS, L=cpr7, R=mut42
    85 skip UNS EQ UNS, L=mut7, R=mut7
    86 skip UNS NE UNS, L=mut7, R=mut42
     64done DYN NE UNS, L=cpr7, R=mut42
     65done UNS EQ UNS, L=mut7, R=mut7
     66done UNS NE UNS, L=mut7, R=mut42
    8767skip UNS NE STA, L=mut7, R=42
    8868skip UNS NE STA, L=mut7, R=enu42
    89 skip UNS NE DYN, L=mut7, R=cpr42
    90 skip STA NE DYN, L=7, R=dim42
    91 skip STA NE DYN, L=enu7, R=dim42
    92 skip DYN NE DYN, L=cpr7, R=dim42
    93 done DYN EQ DYN, L=dim7, R=dim7
    94 skip DYN NE DYN, L=dim7, R=dim42
    95 skip DYN NE STA, L=dim7, R=42
    96 skip DYN NE STA, L=dim7, R=enu42
    97 skip DYN NE DYN, L=dim7, R=cpr42
    98 skip DYN NE UNS, L=dim7, R=mut42
    99 skip UNS NE DYN, L=mut7, R=dim42
     69done UNS NE DYN, L=mut7, R=cpr42
    10070---- REFVAR_ASGN:   { float a[__R__]; float (&b)[__L__] = *0p; & b = & a; }
    10171done STA EQ STA, L=7, R=7
     
    11282skip STA NE UNS, L=enu7, R=mut42
    11383done DYN EQ DYN, L=cpr7, R=cpr7
    114 skip DYN NE DYN, L=cpr7, R=cpr42
     84done DYN NE DYN, L=cpr7, R=cpr42
    11585skip DYN NE STA, L=cpr7, R=42
    11686skip DYN NE STA, L=cpr7, R=enu42
    117 skip DYN NE UNS, L=cpr7, R=mut42
    118 skip UNS EQ UNS, L=mut7, R=mut7
    119 skip UNS NE UNS, L=mut7, R=mut42
     87done DYN NE UNS, L=cpr7, R=mut42
     88done UNS EQ UNS, L=mut7, R=mut7
     89done UNS NE UNS, L=mut7, R=mut42
    12090skip UNS NE STA, L=mut7, R=42
    12191skip UNS NE STA, L=mut7, R=enu42
    122 skip UNS NE DYN, L=mut7, R=cpr42
    123 skip STA NE DYN, L=7, R=dim42
    124 skip STA NE DYN, L=enu7, R=dim42
    125 skip DYN NE DYN, L=cpr7, R=dim42
    126 done DYN EQ DYN, L=dim7, R=dim7
    127 skip DYN NE DYN, L=dim7, R=dim42
    128 skip DYN NE STA, L=dim7, R=42
    129 skip DYN NE STA, L=dim7, R=enu42
    130 skip DYN NE DYN, L=dim7, R=cpr42
    131 skip DYN NE UNS, L=dim7, R=mut42
    132 skip UNS NE DYN, L=mut7, R=dim42
     92done UNS NE DYN, L=mut7, R=cpr42
  • tests/array-container/.expect/dimexpr-match-cfa-ERRS.arm64.txt

    r6065281f r3bf9d10  
    1 array-container/dimexpr-match-cfa.cfa:59:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    2   Name: f
    3 ...to:
    4   Address of:
    5     Name: a
    6 
    7 array-container/dimexpr-match-cfa.cfa:59:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    8   Name: f
    9 ...to:
    10   Address of:
    11     Name: a
    12 
    13 array-container/dimexpr-match-cfa.cfa:59:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    14   Name: f
    15 ...to:
    16   Address of:
    17     Name: a
    18 
    19 array-container/dimexpr-match-cfa.cfa:59:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    20   Name: f
    21 ...to:
    22   Address of:
    23     Name: a
    24 
    25 array-container/dimexpr-match-cfa.cfa:59:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    26   Name: f
    27 ...to:
    28   Address of:
    29     Name: a
    30 
    31 array-container/dimexpr-match-cfa.cfa:59:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    32   Name: f
    33 ...to:
    34   Address of:
    35     Name: a
    36 
    37 array-container/dimexpr-match-cfa.cfa:59:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    38   Name: f
    39 ...to:
    40   Address of:
    41     Name: a
    42 
    43 array-container/dimexpr-match-cfa.cfa:59:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    44   Name: f
    45 ...to:
    46   Address of:
    47     Name: a
    48 
    49 array-container/dimexpr-match-cfa.cfa:59:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    50   Name: f
    51 ...to:
    52   Address of:
    53     Name: a
    54 
    551array-container/dimexpr-match-cfa.cfa:59:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    562  Name: f
     
    208154  ... with parameters
    209155    array of char with dimension of Generated Cast of:
     156      Variable Expression: enu7: const instance of enum __anonymous0 with body
     157      ... with resolved type:
     158        const instance of enum __anonymous0 with body
     159    ... to:
     160      unsigned long int
     161    ... with resolved type:
     162      unsigned long int
     163    float
     164    float
     165    float
     166
     167array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     168  Address of:
     169    Name: a  InitAlternative: pointer to instance of struct arpk with body
     170  ... with parameters
     171    array of char with dimension of Generated Cast of:
     172      Variable Expression: enu7: const instance of enum __anonymous0 with body
     173      ... with resolved type:
     174        const instance of enum __anonymous0 with body
     175    ... to:
     176      unsigned long int
     177    ... with resolved type:
     178      unsigned long int
     179    float
     180    float
     181    float
     182
     183array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     184  Address of:
     185    Name: a  InitAlternative: pointer to instance of struct arpk with body
     186  ... with parameters
     187    array of char with dimension of Generated Cast of:
     188      Variable Expression: enu7: const instance of enum __anonymous0 with body
     189      ... with resolved type:
     190        const instance of enum __anonymous0 with body
     191    ... to:
     192      unsigned long int
     193    ... with resolved type:
     194      unsigned long int
     195    float
     196    float
     197    float
     198
     199array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     200  Address of:
     201    Name: a  InitAlternative: pointer to instance of struct arpk with body
     202  ... with parameters
     203    instance of type dim7 (not function type)
     204    float
     205    float
     206    float
     207
     208array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     209  Address of:
     210    Name: a  InitAlternative: pointer to instance of struct arpk with body
     211  ... with parameters
     212    instance of type dim7 (not function type)
     213    float
     214    float
     215    float
     216
     217array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     218  Address of:
     219    Name: a  InitAlternative: pointer to instance of struct arpk with body
     220  ... with parameters
     221    instance of type dim7 (not function type)
     222    float
     223    float
     224    float
     225
     226array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     227  Address of:
     228    Name: a  InitAlternative: pointer to instance of struct arpk with body
     229  ... with parameters
     230    instance of type dim7 (not function type)
     231    float
     232    float
     233    float
     234
     235array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     236  Address of:
     237    Name: a  InitAlternative: pointer to instance of struct arpk with body
     238  ... with parameters
     239    instance of type dim7 (not function type)
     240    float
     241    float
     242    float
     243
     244array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     245  Address of:
     246    Name: a  InitAlternative: pointer to instance of struct arpk with body
     247  ... with parameters
     248    variable length array of char with dimension of Generated Cast of:
     249      Variable Expression: cpr7: const signed int
     250      ... with resolved type:
     251        const signed int
     252    ... to:
     253      unsigned long int
     254    ... with resolved type:
     255      unsigned long int
     256    float
     257    float
     258    float
     259
     260array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     261  Address of:
     262    Name: a  InitAlternative: pointer to instance of struct arpk with body
     263  ... with parameters
     264    variable length array of char with dimension of Generated Cast of:
     265      Variable Expression: cpr7: const signed int
     266      ... with resolved type:
     267        const signed int
     268    ... to:
     269      unsigned long int
     270    ... with resolved type:
     271      unsigned long int
     272    float
     273    float
     274    float
     275
     276array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     277  Address of:
     278    Name: a  InitAlternative: pointer to instance of struct arpk with body
     279  ... with parameters
     280    variable length array of char with dimension of Generated Cast of:
     281      Variable Expression: cpr7: const signed int
     282      ... with resolved type:
     283        const signed int
     284    ... to:
     285      unsigned long int
     286    ... with resolved type:
     287      unsigned long int
     288    float
     289    float
     290    float
     291
     292array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     293  Address of:
     294    Name: a  InitAlternative: pointer to instance of struct arpk with body
     295  ... with parameters
     296    variable length array of char with dimension of Generated Cast of:
     297      Variable Expression: mut7: signed int
     298      ... with resolved type:
     299        signed int
     300    ... to:
     301      unsigned long int
     302    ... with resolved type:
     303      unsigned long int
     304    float
     305    float
     306    float
     307
     308array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     309  Address of:
     310    Name: a  InitAlternative: pointer to instance of struct arpk with body
     311  ... with parameters
     312    variable length array of char with dimension of Generated Cast of:
     313      Variable Expression: mut7: signed int
     314      ... with resolved type:
     315        signed int
     316    ... to:
     317      unsigned long int
     318    ... with resolved type:
     319      unsigned long int
     320    float
     321    float
     322    float
     323
     324array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     325  Address of:
     326    Name: a  InitAlternative: pointer to instance of struct arpk with body
     327  ... with parameters
     328    variable length array of char with dimension of Generated Cast of:
     329      Variable Expression: mut7: signed int
     330      ... with resolved type:
     331        signed int
     332    ... to:
     333      unsigned long int
     334    ... with resolved type:
     335      unsigned long int
     336    float
     337    float
     338    float
     339
     340array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     341  Name: ?=?
     342...to:
     343  Name: b
     344  Address of:
     345    Name: a
     346
     347array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     348  Name: ?=?
     349...to:
     350  Name: b
     351  Address of:
     352    Name: a
     353
     354array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     355  Name: ?=?
     356...to:
     357  Name: b
     358  Address of:
     359    Name: a
     360
     361array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     362  Name: ?=?
     363...to:
     364  Name: b
     365  Address of:
     366    Name: a
     367
     368array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     369  Name: ?=?
     370...to:
     371  Name: b
     372  Address of:
     373    Name: a
     374
     375array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     376  Name: ?=?
     377...to:
     378  Name: b
     379  Address of:
     380    Name: a
     381
     382array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     383  Name: ?=?
     384...to:
     385  Name: b
     386  Address of:
     387    Name: a
     388
     389array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     390  Name: ?=?
     391...to:
     392  Name: b
     393  Address of:
     394    Name: a
     395
     396array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     397  Name: ?=?
     398...to:
     399  Name: b
     400  Address of:
     401    Name: a
     402
     403array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     404  Name: ?=?
     405...to:
     406  Name: b
     407  Address of:
     408    Name: a
     409
     410array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     411  Name: ?=?
     412...to:
     413  Name: b
     414  Address of:
     415    Name: a
     416
     417array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     418  Name: ?=?
     419...to:
     420  Name: b
     421  Address of:
     422    Name: a
     423
     424array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     425  Name: ?=?
     426...to:
     427  Name: b
     428  Address of:
     429    Name: a
     430
     431array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     432  Name: ?=?
     433...to:
     434  Name: b
     435  Address of:
     436    Name: a
     437
     438array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     439  Name: ?=?
     440...to:
     441  Name: b
     442  Address of:
     443    Name: a
     444
     445array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     446  Name: ?=?
     447...to:
     448  Name: b
     449  Address of:
     450    Name: a
     451
     452array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     453  Name: ?=?
     454...to:
     455  Name: b
     456  Address of:
     457    Name: a
     458
     459array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     460  Name: f
     461...to:
     462  Name: a
     463
     464array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     465  Name: f
     466...to:
     467  Name: a
     468
     469array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     470  Name: f
     471...to:
     472  Name: a
     473
     474array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     475  Name: f
     476...to:
     477  Name: a
     478
     479array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     480  Name: f
     481...to:
     482  Name: a
     483
     484array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     485  Name: f
     486...to:
     487  Name: a
     488
     489array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     490  Name: f
     491...to:
     492  Name: a
     493
     494array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     495  Name: f
     496...to:
     497  Name: a
     498
     499array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     500  Name: f
     501...to:
     502  Name: a
     503
     504array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     505  Name: f
     506...to:
     507  Name: a
     508
     509array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     510  Name: f
     511...to:
     512  Name: a
     513
     514array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     515  Name: f
     516...to:
     517  Name: a
     518
     519array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     520  Name: f
     521...to:
     522  Name: a
     523
     524array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     525  Name: f
     526...to:
     527  Name: a
     528
     529array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     530  Name: f
     531...to:
     532  Name: a
     533
     534array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     535  Name: f
     536...to:
     537  Name: a
     538
     539array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     540  Name: f
     541...to:
     542  Name: a
     543
     544array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     545  Name: a  InitAlternative: reference to instance of struct arpk with body
     546  ... with parameters
     547    array of char with dimension of Generated Cast of:
    210548      Constant Expression (7: signed int)
    211549      ... with resolved type:
     
    219557    float
    220558
    221 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    222   Address of:
    223     Name: a  InitAlternative: pointer to instance of struct arpk with body
     559array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     560  Name: a  InitAlternative: reference to instance of struct arpk with body
    224561  ... with parameters
    225562    array of char with dimension of Generated Cast of:
     
    235572    float
    236573
    237 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    238   Address of:
    239     Name: a  InitAlternative: pointer to instance of struct arpk with body
     574array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     575  Name: a  InitAlternative: reference to instance of struct arpk with body
     576  ... with parameters
     577    array of char with dimension of Generated Cast of:
     578      Constant Expression (7: signed int)
     579      ... with resolved type:
     580        signed int
     581    ... to:
     582      unsigned long int
     583    ... with resolved type:
     584      unsigned long int
     585    float
     586    float
     587    float
     588
     589array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     590  Name: a  InitAlternative: reference to instance of struct arpk with body
    240591  ... with parameters
    241592    array of char with dimension of Generated Cast of:
     
    251602    float
    252603
    253 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    254   Address of:
    255     Name: a  InitAlternative: pointer to instance of struct arpk with body
     604array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     605  Name: a  InitAlternative: reference to instance of struct arpk with body
    256606  ... with parameters
    257607    array of char with dimension of Generated Cast of:
     
    267617    float
    268618
    269 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    270   Address of:
    271     Name: a  InitAlternative: pointer to instance of struct arpk with body
     619array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     620  Name: a  InitAlternative: reference to instance of struct arpk with body
    272621  ... with parameters
    273622    array of char with dimension of Generated Cast of:
     
    283632    float
    284633
    285 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    286   Address of:
    287     Name: a  InitAlternative: pointer to instance of struct arpk with body
    288   ... with parameters
    289     array of char with dimension of Generated Cast of:
    290       Variable Expression: enu7: const instance of enum __anonymous0 with body
    291       ... with resolved type:
    292         const instance of enum __anonymous0 with body
    293     ... to:
    294       unsigned long int
    295     ... with resolved type:
    296       unsigned long int
    297     float
    298     float
    299     float
    300 
    301 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    302   Address of:
    303     Name: a  InitAlternative: pointer to instance of struct arpk with body
    304   ... with parameters
    305     array of char with dimension of Generated Cast of:
    306       Variable Expression: enu7: const instance of enum __anonymous0 with body
    307       ... with resolved type:
    308         const instance of enum __anonymous0 with body
    309     ... to:
    310       unsigned long int
    311     ... with resolved type:
    312       unsigned long int
    313     float
    314     float
    315     float
    316 
    317 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    318   Address of:
    319     Name: a  InitAlternative: pointer to instance of struct arpk with body
     634array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     635  Name: a  InitAlternative: reference to instance of struct arpk with body
    320636  ... with parameters
    321637    instance of type dim7 (not function type)
     
    324640    float
    325641
    326 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    327   Address of:
    328     Name: a  InitAlternative: pointer to instance of struct arpk with body
     642array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     643  Name: a  InitAlternative: reference to instance of struct arpk with body
    329644  ... with parameters
    330645    instance of type dim7 (not function type)
     
    333648    float
    334649
    335 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    336   Address of:
    337     Name: a  InitAlternative: pointer to instance of struct arpk with body
     650array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     651  Name: a  InitAlternative: reference to instance of struct arpk with body
    338652  ... with parameters
    339653    instance of type dim7 (not function type)
     
    342656    float
    343657
    344 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    345   Address of:
    346     Name: a  InitAlternative: pointer to instance of struct arpk with body
     658array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     659  Name: a  InitAlternative: reference to instance of struct arpk with body
    347660  ... with parameters
    348661    instance of type dim7 (not function type)
     
    351664    float
    352665
    353 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    354   Address of:
    355     Name: a  InitAlternative: pointer to instance of struct arpk with body
     666array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     667  Name: a  InitAlternative: reference to instance of struct arpk with body
    356668  ... with parameters
    357669    instance of type dim7 (not function type)
     
    360672    float
    361673
    362 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    363   Address of:
    364     Name: a  InitAlternative: pointer to instance of struct arpk with body
    365   ... with parameters
    366     variable length array of char with dimension of Generated Cast of:
    367       Variable Expression: _array_dim16: const unsigned long int
    368       ... with resolved type:
    369         const unsigned long int
    370     ... to:
    371       unsigned long int
    372     ... with resolved type:
    373       unsigned long int
    374     float
    375     float
    376     float
    377 
    378 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    379   Address of:
    380     Name: a  InitAlternative: pointer to instance of struct arpk with body
    381   ... with parameters
    382     variable length array of char with dimension of Generated Cast of:
    383       Variable Expression: _array_dim18: const unsigned long int
    384       ... with resolved type:
    385         const unsigned long int
    386     ... to:
    387       unsigned long int
    388     ... with resolved type:
    389       unsigned long int
    390     float
    391     float
    392     float
    393 
    394 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    395   Address of:
    396     Name: a  InitAlternative: pointer to instance of struct arpk with body
    397   ... with parameters
    398     variable length array of char with dimension of Generated Cast of:
    399       Variable Expression: _array_dim19: const unsigned long int
    400       ... with resolved type:
    401         const unsigned long int
    402     ... to:
    403       unsigned long int
    404     ... with resolved type:
    405       unsigned long int
    406     float
    407     float
    408     float
    409 
    410 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    411   Address of:
    412     Name: a  InitAlternative: pointer to instance of struct arpk with body
    413   ... with parameters
    414     variable length array of char with dimension of Generated Cast of:
    415       Variable Expression: _array_dim20: const unsigned long int
    416       ... with resolved type:
    417         const unsigned long int
    418     ... to:
    419       unsigned long int
    420     ... with resolved type:
    421       unsigned long int
    422     float
    423     float
    424     float
    425 
    426 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    427   Address of:
    428     Name: a  InitAlternative: pointer to instance of struct arpk with body
    429   ... with parameters
    430     variable length array of char with dimension of Generated Cast of:
    431       Variable Expression: _array_dim21: const unsigned long int
    432       ... with resolved type:
    433         const unsigned long int
    434     ... to:
    435       unsigned long int
    436     ... with resolved type:
    437       unsigned long int
    438     float
    439     float
    440     float
    441 
    442 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    443   Address of:
    444     Name: a  InitAlternative: pointer to instance of struct arpk with body
    445   ... with parameters
    446     variable length array of char with dimension of Generated Cast of:
    447       Variable Expression: _array_dim23: const unsigned long int
    448       ... with resolved type:
    449         const unsigned long int
    450     ... to:
    451       unsigned long int
    452     ... with resolved type:
    453       unsigned long int
    454     float
    455     float
    456     float
    457 
    458 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    459   Address of:
    460     Name: a  InitAlternative: pointer to instance of struct arpk with body
     674array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     675  Name: a  InitAlternative: reference to instance of struct arpk with body
    461676  ... with parameters
    462677    variable length array of char with dimension of Generated Cast of:
     
    472687    float
    473688
    474 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    475   Address of:
    476     Name: a  InitAlternative: pointer to instance of struct arpk with body
     689array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     690  Name: a  InitAlternative: reference to instance of struct arpk with body
    477691  ... with parameters
    478692    variable length array of char with dimension of Generated Cast of:
     
    488702    float
    489703
    490 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    491   Address of:
    492     Name: a  InitAlternative: pointer to instance of struct arpk with body
     704array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     705  Name: a  InitAlternative: reference to instance of struct arpk with body
    493706  ... with parameters
    494707    variable length array of char with dimension of Generated Cast of:
     
    504717    float
    505718
    506 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    507   Address of:
    508     Name: a  InitAlternative: pointer to instance of struct arpk with body
    509   ... with parameters
    510     variable length array of char with dimension of Generated Cast of:
    511       Variable Expression: cpr7: const signed int
    512       ... with resolved type:
    513         const signed int
    514     ... to:
    515       unsigned long int
    516     ... with resolved type:
    517       unsigned long int
    518     float
    519     float
    520     float
    521 
    522 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    523   Address of:
    524     Name: a  InitAlternative: pointer to instance of struct arpk with body
    525   ... with parameters
    526     variable length array of char with dimension of Generated Cast of:
    527       Variable Expression: cpr7: const signed int
    528       ... with resolved type:
    529         const signed int
    530     ... to:
    531       unsigned long int
    532     ... with resolved type:
    533       unsigned long int
    534     float
    535     float
    536     float
    537 
    538 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    539   Name: ?=?
    540 ...to:
    541   Name: b
    542   Address of:
    543     Name: a
    544 
    545 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    546   Name: ?=?
    547 ...to:
    548   Name: b
    549   Address of:
    550     Name: a
    551 
    552 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    553   Name: ?=?
    554 ...to:
    555   Name: b
    556   Address of:
    557     Name: a
    558 
    559 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    560   Name: ?=?
    561 ...to:
    562   Name: b
    563   Address of:
    564     Name: a
    565 
    566 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    567   Name: ?=?
    568 ...to:
    569   Name: b
    570   Address of:
    571     Name: a
    572 
    573 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    574   Name: ?=?
    575 ...to:
    576   Name: b
    577   Address of:
    578     Name: a
    579 
    580 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    581   Name: ?=?
    582 ...to:
    583   Name: b
    584   Address of:
    585     Name: a
    586 
    587 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    588   Name: ?=?
    589 ...to:
    590   Name: b
    591   Address of:
    592     Name: a
    593 
    594 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    595   Name: ?=?
    596 ...to:
    597   Name: b
    598   Address of:
    599     Name: a
    600 
    601 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    602   Name: ?=?
    603 ...to:
    604   Name: b
    605   Address of:
    606     Name: a
    607 
    608 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    609   Name: ?=?
    610 ...to:
    611   Name: b
    612   Address of:
    613     Name: a
    614 
    615 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    616   Name: ?=?
    617 ...to:
    618   Name: b
    619   Address of:
    620     Name: a
    621 
    622 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    623   Name: ?=?
    624 ...to:
    625   Name: b
    626   Address of:
    627     Name: a
    628 
    629 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    630   Name: ?=?
    631 ...to:
    632   Name: b
    633   Address of:
    634     Name: a
    635 
    636 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    637   Name: ?=?
    638 ...to:
    639   Name: b
    640   Address of:
    641     Name: a
    642 
    643 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    644   Name: ?=?
    645 ...to:
    646   Name: b
    647   Address of:
    648     Name: a
    649 
    650 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    651   Name: ?=?
    652 ...to:
    653   Name: b
    654   Address of:
    655     Name: a
    656 
    657 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    658   Name: ?=?
    659 ...to:
    660   Name: b
    661   Address of:
    662     Name: a
    663 
    664 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    665   Name: ?=?
    666 ...to:
    667   Name: b
    668   Address of:
    669     Name: a
    670 
    671 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    672   Name: ?=?
    673 ...to:
    674   Name: b
    675   Address of:
    676     Name: a
    677 
    678 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    679   Name: ?=?
    680 ...to:
    681   Name: b
    682   Address of:
    683     Name: a
    684 
    685 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    686   Name: ?=?
    687 ...to:
    688   Name: b
    689   Address of:
    690     Name: a
    691 
    692 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    693   Name: ?=?
    694 ...to:
    695   Name: b
    696   Address of:
    697     Name: a
    698 
    699 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    700   Name: ?=?
    701 ...to:
    702   Name: b
    703   Address of:
    704     Name: a
    705 
    706 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    707   Name: ?=?
    708 ...to:
    709   Name: b
    710   Address of:
    711     Name: a
    712 
    713 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    714   Name: ?=?
    715 ...to:
    716   Name: b
    717   Address of:
    718     Name: a
    719 
    720 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    721   Name: f
    722 ...to:
    723   Name: a
    724 
    725 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    726   Name: f
    727 ...to:
    728   Name: a
    729 
    730 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    731   Name: f
    732 ...to:
    733   Name: a
    734 
    735 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    736   Name: f
    737 ...to:
    738   Name: a
    739 
    740 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    741   Name: f
    742 ...to:
    743   Name: a
    744 
    745 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    746   Name: f
    747 ...to:
    748   Name: a
    749 
    750 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    751   Name: f
    752 ...to:
    753   Name: a
    754 
    755 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    756   Name: f
    757 ...to:
    758   Name: a
    759 
    760 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    761   Name: f
    762 ...to:
    763   Name: a
    764 
    765 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    766   Name: f
    767 ...to:
    768   Name: a
    769 
    770 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    771   Name: f
    772 ...to:
    773   Name: a
    774 
    775 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    776   Name: f
    777 ...to:
    778   Name: a
    779 
    780 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    781   Name: f
    782 ...to:
    783   Name: a
    784 
    785 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    786   Name: f
    787 ...to:
    788   Name: a
    789 
    790 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    791   Name: f
    792 ...to:
    793   Name: a
    794 
    795 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    796   Name: f
    797 ...to:
    798   Name: a
    799 
    800 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    801   Name: f
    802 ...to:
    803   Name: a
    804 
    805 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    806   Name: f
    807 ...to:
    808   Name: a
    809 
    810 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    811   Name: f
    812 ...to:
    813   Name: a
    814 
    815 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    816   Name: f
    817 ...to:
    818   Name: a
    819 
    820 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    821   Name: f
    822 ...to:
    823   Name: a
    824 
    825 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    826   Name: f
    827 ...to:
    828   Name: a
    829 
    830 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    831   Name: f
    832 ...to:
    833   Name: a
    834 
    835 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    836   Name: f
    837 ...to:
    838   Name: a
    839 
    840 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    841   Name: f
    842 ...to:
    843   Name: a
    844 
    845 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    846   Name: f
    847 ...to:
    848   Name: a
    849 
    850 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    851   Name: a  InitAlternative: reference to instance of struct arpk with body
    852   ... with parameters
    853     array of char with dimension of Generated Cast of:
    854       Constant Expression (7: signed int)
    855       ... with resolved type:
    856         signed int
    857     ... to:
    858       unsigned long int
    859     ... with resolved type:
    860       unsigned long int
    861     float
    862     float
    863     float
    864 
    865 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    866   Name: a  InitAlternative: reference to instance of struct arpk with body
    867   ... with parameters
    868     array of char with dimension of Generated Cast of:
    869       Constant Expression (7: signed int)
    870       ... with resolved type:
    871         signed int
    872     ... to:
    873       unsigned long int
    874     ... with resolved type:
    875       unsigned long int
    876     float
    877     float
    878     float
    879 
    880 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    881   Name: a  InitAlternative: reference to instance of struct arpk with body
    882   ... with parameters
    883     array of char with dimension of Generated Cast of:
    884       Constant Expression (7: signed int)
    885       ... with resolved type:
    886         signed int
    887     ... to:
    888       unsigned long int
    889     ... with resolved type:
    890       unsigned long int
    891     float
    892     float
    893     float
    894 
    895 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    896   Name: a  InitAlternative: reference to instance of struct arpk with body
    897   ... with parameters
    898     array of char with dimension of Generated Cast of:
    899       Constant Expression (7: signed int)
    900       ... with resolved type:
    901         signed int
    902     ... to:
    903       unsigned long int
    904     ... with resolved type:
    905       unsigned long int
    906     float
    907     float
    908     float
    909 
    910 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    911   Name: a  InitAlternative: reference to instance of struct arpk with body
    912   ... with parameters
    913     array of char with dimension of Generated Cast of:
    914       Constant Expression (7: signed int)
    915       ... with resolved type:
    916         signed int
    917     ... to:
    918       unsigned long int
    919     ... with resolved type:
    920       unsigned long int
    921     float
    922     float
    923     float
    924 
    925 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    926   Name: a  InitAlternative: reference to instance of struct arpk with body
    927   ... with parameters
    928     array of char with dimension of Generated Cast of:
    929       Variable Expression: enu7: const instance of enum __anonymous0 with body
    930       ... with resolved type:
    931         const instance of enum __anonymous0 with body
    932     ... to:
    933       unsigned long int
    934     ... with resolved type:
    935       unsigned long int
    936     float
    937     float
    938     float
    939 
    940 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    941   Name: a  InitAlternative: reference to instance of struct arpk with body
    942   ... with parameters
    943     array of char with dimension of Generated Cast of:
    944       Variable Expression: enu7: const instance of enum __anonymous0 with body
    945       ... with resolved type:
    946         const instance of enum __anonymous0 with body
    947     ... to:
    948       unsigned long int
    949     ... with resolved type:
    950       unsigned long int
    951     float
    952     float
    953     float
    954 
    955 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    956   Name: a  InitAlternative: reference to instance of struct arpk with body
    957   ... with parameters
    958     array of char with dimension of Generated Cast of:
    959       Variable Expression: enu7: const instance of enum __anonymous0 with body
    960       ... with resolved type:
    961         const instance of enum __anonymous0 with body
    962     ... to:
    963       unsigned long int
    964     ... with resolved type:
    965       unsigned long int
    966     float
    967     float
    968     float
    969 
    970 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    971   Name: a  InitAlternative: reference to instance of struct arpk with body
    972   ... with parameters
    973     array of char with dimension of Generated Cast of:
    974       Variable Expression: enu7: const instance of enum __anonymous0 with body
    975       ... with resolved type:
    976         const instance of enum __anonymous0 with body
    977     ... to:
    978       unsigned long int
    979     ... with resolved type:
    980       unsigned long int
    981     float
    982     float
    983     float
    984 
    985 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    986   Name: a  InitAlternative: reference to instance of struct arpk with body
    987   ... with parameters
    988     array of char with dimension of Generated Cast of:
    989       Variable Expression: enu7: const instance of enum __anonymous0 with body
    990       ... with resolved type:
    991         const instance of enum __anonymous0 with body
    992     ... to:
    993       unsigned long int
    994     ... with resolved type:
    995       unsigned long int
    996     float
    997     float
    998     float
    999 
    1000 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1001   Name: a  InitAlternative: reference to instance of struct arpk with body
    1002   ... with parameters
    1003     instance of type dim7 (not function type)
    1004     float
    1005     float
    1006     float
    1007 
    1008 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1009   Name: a  InitAlternative: reference to instance of struct arpk with body
    1010   ... with parameters
    1011     instance of type dim7 (not function type)
    1012     float
    1013     float
    1014     float
    1015 
    1016 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1017   Name: a  InitAlternative: reference to instance of struct arpk with body
    1018   ... with parameters
    1019     instance of type dim7 (not function type)
    1020     float
    1021     float
    1022     float
    1023 
    1024 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1025   Name: a  InitAlternative: reference to instance of struct arpk with body
    1026   ... with parameters
    1027     instance of type dim7 (not function type)
    1028     float
    1029     float
    1030     float
    1031 
    1032 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1033   Name: a  InitAlternative: reference to instance of struct arpk with body
    1034   ... with parameters
    1035     instance of type dim7 (not function type)
    1036     float
    1037     float
    1038     float
    1039 
    1040 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1041   Name: a  InitAlternative: reference to instance of struct arpk with body
    1042   ... with parameters
    1043     variable length array of char with dimension of Generated Cast of:
    1044       Variable Expression: _array_dim52: const unsigned long int
    1045       ... with resolved type:
    1046         const unsigned long int
    1047     ... to:
    1048       unsigned long int
    1049     ... with resolved type:
    1050       unsigned long int
    1051     float
    1052     float
    1053     float
    1054 
    1055 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1056   Name: a  InitAlternative: reference to instance of struct arpk with body
    1057   ... with parameters
    1058     variable length array of char with dimension of Generated Cast of:
    1059       Variable Expression: _array_dim54: const unsigned long int
    1060       ... with resolved type:
    1061         const unsigned long int
    1062     ... to:
    1063       unsigned long int
    1064     ... with resolved type:
    1065       unsigned long int
    1066     float
    1067     float
    1068     float
    1069 
    1070 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1071   Name: a  InitAlternative: reference to instance of struct arpk with body
    1072   ... with parameters
    1073     variable length array of char with dimension of Generated Cast of:
    1074       Variable Expression: _array_dim55: const unsigned long int
    1075       ... with resolved type:
    1076         const unsigned long int
    1077     ... to:
    1078       unsigned long int
    1079     ... with resolved type:
    1080       unsigned long int
    1081     float
    1082     float
    1083     float
    1084 
    1085 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1086   Name: a  InitAlternative: reference to instance of struct arpk with body
    1087   ... with parameters
    1088     variable length array of char with dimension of Generated Cast of:
    1089       Variable Expression: _array_dim56: const unsigned long int
    1090       ... with resolved type:
    1091         const unsigned long int
    1092     ... to:
    1093       unsigned long int
    1094     ... with resolved type:
    1095       unsigned long int
    1096     float
    1097     float
    1098     float
    1099 
    1100 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1101   Name: a  InitAlternative: reference to instance of struct arpk with body
    1102   ... with parameters
    1103     variable length array of char with dimension of Generated Cast of:
    1104       Variable Expression: _array_dim57: const unsigned long int
    1105       ... with resolved type:
    1106         const unsigned long int
    1107     ... to:
    1108       unsigned long int
    1109     ... with resolved type:
    1110       unsigned long int
    1111     float
    1112     float
    1113     float
    1114 
    1115 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1116   Name: a  InitAlternative: reference to instance of struct arpk with body
    1117   ... with parameters
    1118     variable length array of char with dimension of Generated Cast of:
    1119       Variable Expression: _array_dim59: const unsigned long int
    1120       ... with resolved type:
    1121         const unsigned long int
    1122     ... to:
    1123       unsigned long int
    1124     ... with resolved type:
    1125       unsigned long int
    1126     float
    1127     float
    1128     float
    1129 
    1130 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1131   Name: a  InitAlternative: reference to instance of struct arpk with body
    1132   ... with parameters
    1133     variable length array of char with dimension of Generated Cast of:
    1134       Variable Expression: cpr7: const signed int
    1135       ... with resolved type:
    1136         const signed int
    1137     ... to:
    1138       unsigned long int
    1139     ... with resolved type:
    1140       unsigned long int
    1141     float
    1142     float
    1143     float
    1144 
    1145 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1146   Name: a  InitAlternative: reference to instance of struct arpk with body
    1147   ... with parameters
    1148     variable length array of char with dimension of Generated Cast of:
    1149       Variable Expression: cpr7: const signed int
    1150       ... with resolved type:
    1151         const signed int
    1152     ... to:
    1153       unsigned long int
    1154     ... with resolved type:
    1155       unsigned long int
    1156     float
    1157     float
    1158     float
    1159 
    1160 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1161   Name: a  InitAlternative: reference to instance of struct arpk with body
    1162   ... with parameters
    1163     variable length array of char with dimension of Generated Cast of:
    1164       Variable Expression: cpr7: const signed int
    1165       ... with resolved type:
    1166         const signed int
    1167     ... to:
    1168       unsigned long int
    1169     ... with resolved type:
    1170       unsigned long int
    1171     float
    1172     float
    1173     float
    1174 
    1175 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1176   Name: a  InitAlternative: reference to instance of struct arpk with body
    1177   ... with parameters
    1178     variable length array of char with dimension of Generated Cast of:
    1179       Variable Expression: cpr7: const signed int
    1180       ... with resolved type:
    1181         const signed int
    1182     ... to:
    1183       unsigned long int
    1184     ... with resolved type:
    1185       unsigned long int
    1186     float
    1187     float
    1188     float
    1189 
    1190 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1191   Name: a  InitAlternative: reference to instance of struct arpk with body
    1192   ... with parameters
    1193     variable length array of char with dimension of Generated Cast of:
    1194       Variable Expression: cpr7: const signed int
    1195       ... with resolved type:
    1196         const signed int
    1197     ... to:
    1198       unsigned long int
    1199     ... with resolved type:
    1200       unsigned long int
    1201     float
    1202     float
    1203     float
    1204 
    1205 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1206   Name: ?=?
    1207 ...to:
    1208   Address of:
    1209     Name: b
    1210   Address of:
    1211     Name: a
    1212 
    1213 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1214   Name: ?=?
    1215 ...to:
    1216   Address of:
    1217     Name: b
    1218   Address of:
    1219     Name: a
    1220 
    1221 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1222   Name: ?=?
    1223 ...to:
    1224   Address of:
    1225     Name: b
    1226   Address of:
    1227     Name: a
    1228 
    1229 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1230   Name: ?=?
    1231 ...to:
    1232   Address of:
    1233     Name: b
    1234   Address of:
    1235     Name: a
    1236 
    1237 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1238   Name: ?=?
    1239 ...to:
    1240   Address of:
    1241     Name: b
    1242   Address of:
    1243     Name: a
    1244 
    1245 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1246   Name: ?=?
    1247 ...to:
    1248   Address of:
    1249     Name: b
    1250   Address of:
    1251     Name: a
    1252 
    1253 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1254   Name: ?=?
    1255 ...to:
    1256   Address of:
    1257     Name: b
    1258   Address of:
    1259     Name: a
    1260 
    1261 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1262   Name: ?=?
    1263 ...to:
    1264   Address of:
    1265     Name: b
    1266   Address of:
    1267     Name: a
    1268 
    1269 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1270   Name: ?=?
    1271 ...to:
    1272   Address of:
    1273     Name: b
    1274   Address of:
    1275     Name: a
    1276 
    1277 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1278   Name: ?=?
    1279 ...to:
    1280   Address of:
    1281     Name: b
    1282   Address of:
    1283     Name: a
    1284 
    1285 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1286   Name: ?=?
    1287 ...to:
    1288   Address of:
    1289     Name: b
    1290   Address of:
    1291     Name: a
    1292 
    1293 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1294   Name: ?=?
    1295 ...to:
    1296   Address of:
    1297     Name: b
    1298   Address of:
    1299     Name: a
    1300 
    1301 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1302   Name: ?=?
    1303 ...to:
    1304   Address of:
    1305     Name: b
    1306   Address of:
    1307     Name: a
    1308 
    1309 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1310   Name: ?=?
    1311 ...to:
    1312   Address of:
    1313     Name: b
    1314   Address of:
    1315     Name: a
    1316 
    1317 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1318   Name: ?=?
    1319 ...to:
    1320   Address of:
    1321     Name: b
    1322   Address of:
    1323     Name: a
    1324 
    1325 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1326   Name: ?=?
    1327 ...to:
    1328   Address of:
    1329     Name: b
    1330   Address of:
    1331     Name: a
    1332 
    1333 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1334   Name: ?=?
    1335 ...to:
    1336   Address of:
    1337     Name: b
    1338   Address of:
    1339     Name: a
    1340 
    1341 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1342   Name: ?=?
    1343 ...to:
    1344   Address of:
    1345     Name: b
    1346   Address of:
    1347     Name: a
    1348 
    1349 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1350   Name: ?=?
    1351 ...to:
    1352   Address of:
    1353     Name: b
    1354   Address of:
    1355     Name: a
    1356 
    1357 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1358   Name: ?=?
    1359 ...to:
    1360   Address of:
    1361     Name: b
    1362   Address of:
    1363     Name: a
    1364 
    1365 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1366   Name: ?=?
    1367 ...to:
    1368   Address of:
    1369     Name: b
    1370   Address of:
    1371     Name: a
    1372 
    1373 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1374   Name: ?=?
    1375 ...to:
    1376   Address of:
    1377     Name: b
    1378   Address of:
    1379     Name: a
    1380 
    1381 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1382   Name: ?=?
    1383 ...to:
    1384   Address of:
    1385     Name: b
    1386   Address of:
    1387     Name: a
    1388 
    1389 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1390   Name: ?=?
    1391 ...to:
    1392   Address of:
    1393     Name: b
    1394   Address of:
    1395     Name: a
    1396 
    1397 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1398   Name: ?=?
    1399 ...to:
    1400   Address of:
    1401     Name: b
    1402   Address of:
    1403     Name: a
    1404 
    1405 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1406   Name: ?=?
    1407 ...to:
    1408   Address of:
    1409     Name: b
    1410   Address of:
    1411     Name: a
    1412 
    1413 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1414   Name: zip
    1415 ...to:
    1416   Name: a
    1417   Name: b
    1418 
    1419 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1420   Name: zip
    1421 ...to:
    1422   Name: a
    1423   Name: b
    1424 
    1425 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1426   Name: zip
    1427 ...to:
    1428   Name: a
    1429   Name: b
    1430 
    1431 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1432   Name: zip
    1433 ...to:
    1434   Name: a
    1435   Name: b
    1436 
    1437 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1438   Name: zip
    1439 ...to:
    1440   Name: a
    1441   Name: b
    1442 
    1443 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1444   Name: zip
    1445 ...to:
    1446   Name: a
    1447   Name: b
    1448 
    1449 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1450   Name: zip
    1451 ...to:
    1452   Name: a
    1453   Name: b
    1454 
    1455 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1456   Name: zip
    1457 ...to:
    1458   Name: a
    1459   Name: b
    1460 
    1461 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1462   Name: zip
    1463 ...to:
    1464   Name: a
    1465   Name: b
    1466 
    1467 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1468   Name: zip
    1469 ...to:
    1470   Name: a
    1471   Name: b
    1472 
    1473 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1474   Name: zip
    1475 ...to:
    1476   Name: a
    1477   Name: b
    1478 
    1479 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1480   Name: zip
    1481 ...to:
    1482   Name: a
    1483   Name: b
    1484 
    1485 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1486   Name: zip
    1487 ...to:
    1488   Name: a
    1489   Name: b
    1490 
    1491 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1492   Name: zip
    1493 ...to:
    1494   Name: a
    1495   Name: b
    1496 
    1497 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1498   Name: zip
    1499 ...to:
    1500   Name: a
    1501   Name: b
    1502 
    1503 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1504   Name: zip
    1505 ...to:
    1506   Name: a
    1507   Name: b
    1508 
    1509 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1510   Name: zip
    1511 ...to:
    1512   Name: a
    1513   Name: b
    1514 
    1515 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1516   Name: zip
    1517 ...to:
    1518   Name: a
    1519   Name: b
    1520 
    1521 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1522   Name: zip
    1523 ...to:
    1524   Name: a
    1525   Name: b
    1526 
    1527 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1528   Name: zip
    1529 ...to:
    1530   Name: a
    1531   Name: b
    1532 
    1533 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1534   Name: zip
    1535 ...to:
    1536   Name: a
    1537   Name: b
    1538 
    1539 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1540   Name: zip
    1541 ...to:
    1542   Name: a
    1543   Name: b
    1544 
    1545 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1546   Name: zip
    1547 ...to:
    1548   Name: a
    1549   Name: b
    1550 
    1551 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1552   Name: zip
    1553 ...to:
    1554   Name: a
    1555   Name: b
    1556 
    1557 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1558   Name: zip
    1559 ...to:
    1560   Name: a
    1561   Name: b
    1562 
    1563 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1564   Name: zip
    1565 ...to:
    1566   Name: a
    1567   Name: b
    1568 
     719array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     720  Name: a  InitAlternative: reference to instance of struct arpk with body
     721  ... with parameters
     722    variable length array of char with dimension of Generated Cast of:
     723      Variable Expression: mut7: signed int
     724      ... with resolved type:
     725        signed int
     726    ... to:
     727      unsigned long int
     728    ... with resolved type:
     729      unsigned long int
     730    float
     731    float
     732    float
     733
     734array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     735  Name: a  InitAlternative: reference to instance of struct arpk with body
     736  ... with parameters
     737    variable length array of char with dimension of Generated Cast of:
     738      Variable Expression: mut7: signed int
     739      ... with resolved type:
     740        signed int
     741    ... to:
     742      unsigned long int
     743    ... with resolved type:
     744      unsigned long int
     745    float
     746    float
     747    float
     748
     749array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     750  Name: a  InitAlternative: reference to instance of struct arpk with body
     751  ... with parameters
     752    variable length array of char with dimension of Generated Cast of:
     753      Variable Expression: mut7: signed int
     754      ... with resolved type:
     755        signed int
     756    ... to:
     757      unsigned long int
     758    ... with resolved type:
     759      unsigned long int
     760    float
     761    float
     762    float
     763
     764array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     765  Name: ?=?
     766...to:
     767  Address of:
     768    Name: b
     769  Address of:
     770    Name: a
     771
     772array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     773  Name: ?=?
     774...to:
     775  Address of:
     776    Name: b
     777  Address of:
     778    Name: a
     779
     780array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     781  Name: ?=?
     782...to:
     783  Address of:
     784    Name: b
     785  Address of:
     786    Name: a
     787
     788array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     789  Name: ?=?
     790...to:
     791  Address of:
     792    Name: b
     793  Address of:
     794    Name: a
     795
     796array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     797  Name: ?=?
     798...to:
     799  Address of:
     800    Name: b
     801  Address of:
     802    Name: a
     803
     804array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     805  Name: ?=?
     806...to:
     807  Address of:
     808    Name: b
     809  Address of:
     810    Name: a
     811
     812array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     813  Name: ?=?
     814...to:
     815  Address of:
     816    Name: b
     817  Address of:
     818    Name: a
     819
     820array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     821  Name: ?=?
     822...to:
     823  Address of:
     824    Name: b
     825  Address of:
     826    Name: a
     827
     828array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     829  Name: ?=?
     830...to:
     831  Address of:
     832    Name: b
     833  Address of:
     834    Name: a
     835
     836array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     837  Name: ?=?
     838...to:
     839  Address of:
     840    Name: b
     841  Address of:
     842    Name: a
     843
     844array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     845  Name: ?=?
     846...to:
     847  Address of:
     848    Name: b
     849  Address of:
     850    Name: a
     851
     852array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     853  Name: ?=?
     854...to:
     855  Address of:
     856    Name: b
     857  Address of:
     858    Name: a
     859
     860array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     861  Name: ?=?
     862...to:
     863  Address of:
     864    Name: b
     865  Address of:
     866    Name: a
     867
     868array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     869  Name: ?=?
     870...to:
     871  Address of:
     872    Name: b
     873  Address of:
     874    Name: a
     875
     876array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     877  Name: ?=?
     878...to:
     879  Address of:
     880    Name: b
     881  Address of:
     882    Name: a
     883
     884array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     885  Name: ?=?
     886...to:
     887  Address of:
     888    Name: b
     889  Address of:
     890    Name: a
     891
     892array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     893  Name: ?=?
     894...to:
     895  Address of:
     896    Name: b
     897  Address of:
     898    Name: a
     899
     900array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     901  Name: zip
     902...to:
     903  Name: a
     904  Name: b
     905
     906array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     907  Name: zip
     908...to:
     909  Name: a
     910  Name: b
     911
     912array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     913  Name: zip
     914...to:
     915  Name: a
     916  Name: b
     917
     918array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     919  Name: zip
     920...to:
     921  Name: a
     922  Name: b
     923
     924array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     925  Name: zip
     926...to:
     927  Name: a
     928  Name: b
     929
     930array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     931  Name: zip
     932...to:
     933  Name: a
     934  Name: b
     935
     936array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     937  Name: zip
     938...to:
     939  Name: a
     940  Name: b
     941
     942array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     943  Name: zip
     944...to:
     945  Name: a
     946  Name: b
     947
     948array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     949  Name: zip
     950...to:
     951  Name: a
     952  Name: b
     953
     954array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     955  Name: zip
     956...to:
     957  Name: a
     958  Name: b
     959
     960array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     961  Name: zip
     962...to:
     963  Name: a
     964  Name: b
     965
     966array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     967  Name: zip
     968...to:
     969  Name: a
     970  Name: b
     971
     972array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     973  Name: zip
     974...to:
     975  Name: a
     976  Name: b
     977
     978array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     979  Name: zip
     980...to:
     981  Name: a
     982  Name: b
     983
     984array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     985  Name: zip
     986...to:
     987  Name: a
     988  Name: b
     989
     990array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     991  Name: zip
     992...to:
     993  Name: a
     994  Name: b
     995
     996array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     997  Name: zip
     998...to:
     999  Name: a
     1000  Name: b
     1001
  • tests/array-container/.expect/dimexpr-match-cfa-ERRS.x64.txt

    r6065281f r3bf9d10  
    1 array-container/dimexpr-match-cfa.cfa:59:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    2   Name: f
    3 ...to:
    4   Address of:
    5     Name: a
    6 
    7 array-container/dimexpr-match-cfa.cfa:59:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    8   Name: f
    9 ...to:
    10   Address of:
    11     Name: a
    12 
    13 array-container/dimexpr-match-cfa.cfa:59:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    14   Name: f
    15 ...to:
    16   Address of:
    17     Name: a
    18 
    19 array-container/dimexpr-match-cfa.cfa:59:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    20   Name: f
    21 ...to:
    22   Address of:
    23     Name: a
    24 
    25 array-container/dimexpr-match-cfa.cfa:59:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    26   Name: f
    27 ...to:
    28   Address of:
    29     Name: a
    30 
    31 array-container/dimexpr-match-cfa.cfa:59:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    32   Name: f
    33 ...to:
    34   Address of:
    35     Name: a
    36 
    37 array-container/dimexpr-match-cfa.cfa:59:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    38   Name: f
    39 ...to:
    40   Address of:
    41     Name: a
    42 
    43 array-container/dimexpr-match-cfa.cfa:59:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    44   Name: f
    45 ...to:
    46   Address of:
    47     Name: a
    48 
    49 array-container/dimexpr-match-cfa.cfa:59:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    50   Name: f
    51 ...to:
    52   Address of:
    53     Name: a
    54 
    551array-container/dimexpr-match-cfa.cfa:59:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    562  Name: f
     
    208154  ... with parameters
    209155    array of char with dimension of Generated Cast of:
     156      Variable Expression: enu7: const instance of enum __anonymous0 with body
     157      ... with resolved type:
     158        const instance of enum __anonymous0 with body
     159    ... to:
     160      unsigned long int
     161    ... with resolved type:
     162      unsigned long int
     163    float
     164    float
     165    float
     166
     167array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     168  Address of:
     169    Name: a  InitAlternative: pointer to instance of struct arpk with body
     170  ... with parameters
     171    array of char with dimension of Generated Cast of:
     172      Variable Expression: enu7: const instance of enum __anonymous0 with body
     173      ... with resolved type:
     174        const instance of enum __anonymous0 with body
     175    ... to:
     176      unsigned long int
     177    ... with resolved type:
     178      unsigned long int
     179    float
     180    float
     181    float
     182
     183array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     184  Address of:
     185    Name: a  InitAlternative: pointer to instance of struct arpk with body
     186  ... with parameters
     187    array of char with dimension of Generated Cast of:
     188      Variable Expression: enu7: const instance of enum __anonymous0 with body
     189      ... with resolved type:
     190        const instance of enum __anonymous0 with body
     191    ... to:
     192      unsigned long int
     193    ... with resolved type:
     194      unsigned long int
     195    float
     196    float
     197    float
     198
     199array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     200  Address of:
     201    Name: a  InitAlternative: pointer to instance of struct arpk with body
     202  ... with parameters
     203    instance of type dim7 (not function type)
     204    float
     205    float
     206    float
     207
     208array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     209  Address of:
     210    Name: a  InitAlternative: pointer to instance of struct arpk with body
     211  ... with parameters
     212    instance of type dim7 (not function type)
     213    float
     214    float
     215    float
     216
     217array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     218  Address of:
     219    Name: a  InitAlternative: pointer to instance of struct arpk with body
     220  ... with parameters
     221    instance of type dim7 (not function type)
     222    float
     223    float
     224    float
     225
     226array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     227  Address of:
     228    Name: a  InitAlternative: pointer to instance of struct arpk with body
     229  ... with parameters
     230    instance of type dim7 (not function type)
     231    float
     232    float
     233    float
     234
     235array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     236  Address of:
     237    Name: a  InitAlternative: pointer to instance of struct arpk with body
     238  ... with parameters
     239    instance of type dim7 (not function type)
     240    float
     241    float
     242    float
     243
     244array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     245  Address of:
     246    Name: a  InitAlternative: pointer to instance of struct arpk with body
     247  ... with parameters
     248    variable length array of char with dimension of Generated Cast of:
     249      Variable Expression: cpr7: const signed int
     250      ... with resolved type:
     251        const signed int
     252    ... to:
     253      unsigned long int
     254    ... with resolved type:
     255      unsigned long int
     256    float
     257    float
     258    float
     259
     260array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     261  Address of:
     262    Name: a  InitAlternative: pointer to instance of struct arpk with body
     263  ... with parameters
     264    variable length array of char with dimension of Generated Cast of:
     265      Variable Expression: cpr7: const signed int
     266      ... with resolved type:
     267        const signed int
     268    ... to:
     269      unsigned long int
     270    ... with resolved type:
     271      unsigned long int
     272    float
     273    float
     274    float
     275
     276array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     277  Address of:
     278    Name: a  InitAlternative: pointer to instance of struct arpk with body
     279  ... with parameters
     280    variable length array of char with dimension of Generated Cast of:
     281      Variable Expression: cpr7: const signed int
     282      ... with resolved type:
     283        const signed int
     284    ... to:
     285      unsigned long int
     286    ... with resolved type:
     287      unsigned long int
     288    float
     289    float
     290    float
     291
     292array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     293  Address of:
     294    Name: a  InitAlternative: pointer to instance of struct arpk with body
     295  ... with parameters
     296    variable length array of char with dimension of Generated Cast of:
     297      Variable Expression: mut7: signed int
     298      ... with resolved type:
     299        signed int
     300    ... to:
     301      unsigned long int
     302    ... with resolved type:
     303      unsigned long int
     304    float
     305    float
     306    float
     307
     308array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     309  Address of:
     310    Name: a  InitAlternative: pointer to instance of struct arpk with body
     311  ... with parameters
     312    variable length array of char with dimension of Generated Cast of:
     313      Variable Expression: mut7: signed int
     314      ... with resolved type:
     315        signed int
     316    ... to:
     317      unsigned long int
     318    ... with resolved type:
     319      unsigned long int
     320    float
     321    float
     322    float
     323
     324array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     325  Address of:
     326    Name: a  InitAlternative: pointer to instance of struct arpk with body
     327  ... with parameters
     328    variable length array of char with dimension of Generated Cast of:
     329      Variable Expression: mut7: signed int
     330      ... with resolved type:
     331        signed int
     332    ... to:
     333      unsigned long int
     334    ... with resolved type:
     335      unsigned long int
     336    float
     337    float
     338    float
     339
     340array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     341  Name: ?=?
     342...to:
     343  Name: b
     344  Address of:
     345    Name: a
     346
     347array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     348  Name: ?=?
     349...to:
     350  Name: b
     351  Address of:
     352    Name: a
     353
     354array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     355  Name: ?=?
     356...to:
     357  Name: b
     358  Address of:
     359    Name: a
     360
     361array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     362  Name: ?=?
     363...to:
     364  Name: b
     365  Address of:
     366    Name: a
     367
     368array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     369  Name: ?=?
     370...to:
     371  Name: b
     372  Address of:
     373    Name: a
     374
     375array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     376  Name: ?=?
     377...to:
     378  Name: b
     379  Address of:
     380    Name: a
     381
     382array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     383  Name: ?=?
     384...to:
     385  Name: b
     386  Address of:
     387    Name: a
     388
     389array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     390  Name: ?=?
     391...to:
     392  Name: b
     393  Address of:
     394    Name: a
     395
     396array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     397  Name: ?=?
     398...to:
     399  Name: b
     400  Address of:
     401    Name: a
     402
     403array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     404  Name: ?=?
     405...to:
     406  Name: b
     407  Address of:
     408    Name: a
     409
     410array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     411  Name: ?=?
     412...to:
     413  Name: b
     414  Address of:
     415    Name: a
     416
     417array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     418  Name: ?=?
     419...to:
     420  Name: b
     421  Address of:
     422    Name: a
     423
     424array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     425  Name: ?=?
     426...to:
     427  Name: b
     428  Address of:
     429    Name: a
     430
     431array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     432  Name: ?=?
     433...to:
     434  Name: b
     435  Address of:
     436    Name: a
     437
     438array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     439  Name: ?=?
     440...to:
     441  Name: b
     442  Address of:
     443    Name: a
     444
     445array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     446  Name: ?=?
     447...to:
     448  Name: b
     449  Address of:
     450    Name: a
     451
     452array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     453  Name: ?=?
     454...to:
     455  Name: b
     456  Address of:
     457    Name: a
     458
     459array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     460  Name: f
     461...to:
     462  Name: a
     463
     464array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     465  Name: f
     466...to:
     467  Name: a
     468
     469array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     470  Name: f
     471...to:
     472  Name: a
     473
     474array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     475  Name: f
     476...to:
     477  Name: a
     478
     479array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     480  Name: f
     481...to:
     482  Name: a
     483
     484array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     485  Name: f
     486...to:
     487  Name: a
     488
     489array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     490  Name: f
     491...to:
     492  Name: a
     493
     494array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     495  Name: f
     496...to:
     497  Name: a
     498
     499array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     500  Name: f
     501...to:
     502  Name: a
     503
     504array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     505  Name: f
     506...to:
     507  Name: a
     508
     509array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     510  Name: f
     511...to:
     512  Name: a
     513
     514array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     515  Name: f
     516...to:
     517  Name: a
     518
     519array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     520  Name: f
     521...to:
     522  Name: a
     523
     524array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     525  Name: f
     526...to:
     527  Name: a
     528
     529array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     530  Name: f
     531...to:
     532  Name: a
     533
     534array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     535  Name: f
     536...to:
     537  Name: a
     538
     539array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     540  Name: f
     541...to:
     542  Name: a
     543
     544array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     545  Name: a  InitAlternative: reference to instance of struct arpk with body
     546  ... with parameters
     547    array of char with dimension of Generated Cast of:
    210548      Constant Expression (7: signed int)
    211549      ... with resolved type:
     
    219557    float
    220558
    221 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    222   Address of:
    223     Name: a  InitAlternative: pointer to instance of struct arpk with body
     559array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     560  Name: a  InitAlternative: reference to instance of struct arpk with body
    224561  ... with parameters
    225562    array of char with dimension of Generated Cast of:
     
    235572    float
    236573
    237 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    238   Address of:
    239     Name: a  InitAlternative: pointer to instance of struct arpk with body
     574array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     575  Name: a  InitAlternative: reference to instance of struct arpk with body
     576  ... with parameters
     577    array of char with dimension of Generated Cast of:
     578      Constant Expression (7: signed int)
     579      ... with resolved type:
     580        signed int
     581    ... to:
     582      unsigned long int
     583    ... with resolved type:
     584      unsigned long int
     585    float
     586    float
     587    float
     588
     589array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     590  Name: a  InitAlternative: reference to instance of struct arpk with body
    240591  ... with parameters
    241592    array of char with dimension of Generated Cast of:
     
    251602    float
    252603
    253 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    254   Address of:
    255     Name: a  InitAlternative: pointer to instance of struct arpk with body
     604array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     605  Name: a  InitAlternative: reference to instance of struct arpk with body
    256606  ... with parameters
    257607    array of char with dimension of Generated Cast of:
     
    267617    float
    268618
    269 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    270   Address of:
    271     Name: a  InitAlternative: pointer to instance of struct arpk with body
     619array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     620  Name: a  InitAlternative: reference to instance of struct arpk with body
    272621  ... with parameters
    273622    array of char with dimension of Generated Cast of:
     
    283632    float
    284633
    285 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    286   Address of:
    287     Name: a  InitAlternative: pointer to instance of struct arpk with body
    288   ... with parameters
    289     array of char with dimension of Generated Cast of:
    290       Variable Expression: enu7: const instance of enum __anonymous0 with body
    291       ... with resolved type:
    292         const instance of enum __anonymous0 with body
    293     ... to:
    294       unsigned long int
    295     ... with resolved type:
    296       unsigned long int
    297     float
    298     float
    299     float
    300 
    301 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    302   Address of:
    303     Name: a  InitAlternative: pointer to instance of struct arpk with body
    304   ... with parameters
    305     array of char with dimension of Generated Cast of:
    306       Variable Expression: enu7: const instance of enum __anonymous0 with body
    307       ... with resolved type:
    308         const instance of enum __anonymous0 with body
    309     ... to:
    310       unsigned long int
    311     ... with resolved type:
    312       unsigned long int
    313     float
    314     float
    315     float
    316 
    317 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    318   Address of:
    319     Name: a  InitAlternative: pointer to instance of struct arpk with body
     634array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     635  Name: a  InitAlternative: reference to instance of struct arpk with body
    320636  ... with parameters
    321637    instance of type dim7 (not function type)
     
    324640    float
    325641
    326 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    327   Address of:
    328     Name: a  InitAlternative: pointer to instance of struct arpk with body
     642array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     643  Name: a  InitAlternative: reference to instance of struct arpk with body
    329644  ... with parameters
    330645    instance of type dim7 (not function type)
     
    333648    float
    334649
    335 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    336   Address of:
    337     Name: a  InitAlternative: pointer to instance of struct arpk with body
     650array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     651  Name: a  InitAlternative: reference to instance of struct arpk with body
    338652  ... with parameters
    339653    instance of type dim7 (not function type)
     
    342656    float
    343657
    344 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    345   Address of:
    346     Name: a  InitAlternative: pointer to instance of struct arpk with body
     658array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     659  Name: a  InitAlternative: reference to instance of struct arpk with body
    347660  ... with parameters
    348661    instance of type dim7 (not function type)
     
    351664    float
    352665
    353 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    354   Address of:
    355     Name: a  InitAlternative: pointer to instance of struct arpk with body
     666array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     667  Name: a  InitAlternative: reference to instance of struct arpk with body
    356668  ... with parameters
    357669    instance of type dim7 (not function type)
     
    360672    float
    361673
    362 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    363   Address of:
    364     Name: a  InitAlternative: pointer to instance of struct arpk with body
    365   ... with parameters
    366     variable length array of char with dimension of Generated Cast of:
    367       Variable Expression: _array_dim16: const unsigned long int
    368       ... with resolved type:
    369         const unsigned long int
    370     ... to:
    371       unsigned long int
    372     ... with resolved type:
    373       unsigned long int
    374     float
    375     float
    376     float
    377 
    378 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    379   Address of:
    380     Name: a  InitAlternative: pointer to instance of struct arpk with body
    381   ... with parameters
    382     variable length array of char with dimension of Generated Cast of:
    383       Variable Expression: _array_dim18: const unsigned long int
    384       ... with resolved type:
    385         const unsigned long int
    386     ... to:
    387       unsigned long int
    388     ... with resolved type:
    389       unsigned long int
    390     float
    391     float
    392     float
    393 
    394 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    395   Address of:
    396     Name: a  InitAlternative: pointer to instance of struct arpk with body
    397   ... with parameters
    398     variable length array of char with dimension of Generated Cast of:
    399       Variable Expression: _array_dim19: const unsigned long int
    400       ... with resolved type:
    401         const unsigned long int
    402     ... to:
    403       unsigned long int
    404     ... with resolved type:
    405       unsigned long int
    406     float
    407     float
    408     float
    409 
    410 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    411   Address of:
    412     Name: a  InitAlternative: pointer to instance of struct arpk with body
    413   ... with parameters
    414     variable length array of char with dimension of Generated Cast of:
    415       Variable Expression: _array_dim20: const unsigned long int
    416       ... with resolved type:
    417         const unsigned long int
    418     ... to:
    419       unsigned long int
    420     ... with resolved type:
    421       unsigned long int
    422     float
    423     float
    424     float
    425 
    426 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    427   Address of:
    428     Name: a  InitAlternative: pointer to instance of struct arpk with body
    429   ... with parameters
    430     variable length array of char with dimension of Generated Cast of:
    431       Variable Expression: _array_dim21: const unsigned long int
    432       ... with resolved type:
    433         const unsigned long int
    434     ... to:
    435       unsigned long int
    436     ... with resolved type:
    437       unsigned long int
    438     float
    439     float
    440     float
    441 
    442 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    443   Address of:
    444     Name: a  InitAlternative: pointer to instance of struct arpk with body
    445   ... with parameters
    446     variable length array of char with dimension of Generated Cast of:
    447       Variable Expression: _array_dim23: const unsigned long int
    448       ... with resolved type:
    449         const unsigned long int
    450     ... to:
    451       unsigned long int
    452     ... with resolved type:
    453       unsigned long int
    454     float
    455     float
    456     float
    457 
    458 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    459   Address of:
    460     Name: a  InitAlternative: pointer to instance of struct arpk with body
     674array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     675  Name: a  InitAlternative: reference to instance of struct arpk with body
    461676  ... with parameters
    462677    variable length array of char with dimension of Generated Cast of:
     
    472687    float
    473688
    474 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    475   Address of:
    476     Name: a  InitAlternative: pointer to instance of struct arpk with body
     689array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     690  Name: a  InitAlternative: reference to instance of struct arpk with body
    477691  ... with parameters
    478692    variable length array of char with dimension of Generated Cast of:
     
    488702    float
    489703
    490 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    491   Address of:
    492     Name: a  InitAlternative: pointer to instance of struct arpk with body
     704array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     705  Name: a  InitAlternative: reference to instance of struct arpk with body
    493706  ... with parameters
    494707    variable length array of char with dimension of Generated Cast of:
     
    504717    float
    505718
    506 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    507   Address of:
    508     Name: a  InitAlternative: pointer to instance of struct arpk with body
    509   ... with parameters
    510     variable length array of char with dimension of Generated Cast of:
    511       Variable Expression: cpr7: const signed int
    512       ... with resolved type:
    513         const signed int
    514     ... to:
    515       unsigned long int
    516     ... with resolved type:
    517       unsigned long int
    518     float
    519     float
    520     float
    521 
    522 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    523   Address of:
    524     Name: a  InitAlternative: pointer to instance of struct arpk with body
    525   ... with parameters
    526     variable length array of char with dimension of Generated Cast of:
    527       Variable Expression: cpr7: const signed int
    528       ... with resolved type:
    529         const signed int
    530     ... to:
    531       unsigned long int
    532     ... with resolved type:
    533       unsigned long int
    534     float
    535     float
    536     float
    537 
    538 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    539   Name: ?=?
    540 ...to:
    541   Name: b
    542   Address of:
    543     Name: a
    544 
    545 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    546   Name: ?=?
    547 ...to:
    548   Name: b
    549   Address of:
    550     Name: a
    551 
    552 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    553   Name: ?=?
    554 ...to:
    555   Name: b
    556   Address of:
    557     Name: a
    558 
    559 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    560   Name: ?=?
    561 ...to:
    562   Name: b
    563   Address of:
    564     Name: a
    565 
    566 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    567   Name: ?=?
    568 ...to:
    569   Name: b
    570   Address of:
    571     Name: a
    572 
    573 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    574   Name: ?=?
    575 ...to:
    576   Name: b
    577   Address of:
    578     Name: a
    579 
    580 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    581   Name: ?=?
    582 ...to:
    583   Name: b
    584   Address of:
    585     Name: a
    586 
    587 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    588   Name: ?=?
    589 ...to:
    590   Name: b
    591   Address of:
    592     Name: a
    593 
    594 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    595   Name: ?=?
    596 ...to:
    597   Name: b
    598   Address of:
    599     Name: a
    600 
    601 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    602   Name: ?=?
    603 ...to:
    604   Name: b
    605   Address of:
    606     Name: a
    607 
    608 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    609   Name: ?=?
    610 ...to:
    611   Name: b
    612   Address of:
    613     Name: a
    614 
    615 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    616   Name: ?=?
    617 ...to:
    618   Name: b
    619   Address of:
    620     Name: a
    621 
    622 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    623   Name: ?=?
    624 ...to:
    625   Name: b
    626   Address of:
    627     Name: a
    628 
    629 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    630   Name: ?=?
    631 ...to:
    632   Name: b
    633   Address of:
    634     Name: a
    635 
    636 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    637   Name: ?=?
    638 ...to:
    639   Name: b
    640   Address of:
    641     Name: a
    642 
    643 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    644   Name: ?=?
    645 ...to:
    646   Name: b
    647   Address of:
    648     Name: a
    649 
    650 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    651   Name: ?=?
    652 ...to:
    653   Name: b
    654   Address of:
    655     Name: a
    656 
    657 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    658   Name: ?=?
    659 ...to:
    660   Name: b
    661   Address of:
    662     Name: a
    663 
    664 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    665   Name: ?=?
    666 ...to:
    667   Name: b
    668   Address of:
    669     Name: a
    670 
    671 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    672   Name: ?=?
    673 ...to:
    674   Name: b
    675   Address of:
    676     Name: a
    677 
    678 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    679   Name: ?=?
    680 ...to:
    681   Name: b
    682   Address of:
    683     Name: a
    684 
    685 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    686   Name: ?=?
    687 ...to:
    688   Name: b
    689   Address of:
    690     Name: a
    691 
    692 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    693   Name: ?=?
    694 ...to:
    695   Name: b
    696   Address of:
    697     Name: a
    698 
    699 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    700   Name: ?=?
    701 ...to:
    702   Name: b
    703   Address of:
    704     Name: a
    705 
    706 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    707   Name: ?=?
    708 ...to:
    709   Name: b
    710   Address of:
    711     Name: a
    712 
    713 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    714   Name: ?=?
    715 ...to:
    716   Name: b
    717   Address of:
    718     Name: a
    719 
    720 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    721   Name: f
    722 ...to:
    723   Name: a
    724 
    725 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    726   Name: f
    727 ...to:
    728   Name: a
    729 
    730 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    731   Name: f
    732 ...to:
    733   Name: a
    734 
    735 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    736   Name: f
    737 ...to:
    738   Name: a
    739 
    740 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    741   Name: f
    742 ...to:
    743   Name: a
    744 
    745 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    746   Name: f
    747 ...to:
    748   Name: a
    749 
    750 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    751   Name: f
    752 ...to:
    753   Name: a
    754 
    755 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    756   Name: f
    757 ...to:
    758   Name: a
    759 
    760 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    761   Name: f
    762 ...to:
    763   Name: a
    764 
    765 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    766   Name: f
    767 ...to:
    768   Name: a
    769 
    770 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    771   Name: f
    772 ...to:
    773   Name: a
    774 
    775 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    776   Name: f
    777 ...to:
    778   Name: a
    779 
    780 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    781   Name: f
    782 ...to:
    783   Name: a
    784 
    785 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    786   Name: f
    787 ...to:
    788   Name: a
    789 
    790 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    791   Name: f
    792 ...to:
    793   Name: a
    794 
    795 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    796   Name: f
    797 ...to:
    798   Name: a
    799 
    800 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    801   Name: f
    802 ...to:
    803   Name: a
    804 
    805 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    806   Name: f
    807 ...to:
    808   Name: a
    809 
    810 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    811   Name: f
    812 ...to:
    813   Name: a
    814 
    815 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    816   Name: f
    817 ...to:
    818   Name: a
    819 
    820 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    821   Name: f
    822 ...to:
    823   Name: a
    824 
    825 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    826   Name: f
    827 ...to:
    828   Name: a
    829 
    830 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    831   Name: f
    832 ...to:
    833   Name: a
    834 
    835 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    836   Name: f
    837 ...to:
    838   Name: a
    839 
    840 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    841   Name: f
    842 ...to:
    843   Name: a
    844 
    845 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    846   Name: f
    847 ...to:
    848   Name: a
    849 
    850 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    851   Name: a  InitAlternative: reference to instance of struct arpk with body
    852   ... with parameters
    853     array of char with dimension of Generated Cast of:
    854       Constant Expression (7: signed int)
    855       ... with resolved type:
    856         signed int
    857     ... to:
    858       unsigned long int
    859     ... with resolved type:
    860       unsigned long int
    861     float
    862     float
    863     float
    864 
    865 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    866   Name: a  InitAlternative: reference to instance of struct arpk with body
    867   ... with parameters
    868     array of char with dimension of Generated Cast of:
    869       Constant Expression (7: signed int)
    870       ... with resolved type:
    871         signed int
    872     ... to:
    873       unsigned long int
    874     ... with resolved type:
    875       unsigned long int
    876     float
    877     float
    878     float
    879 
    880 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    881   Name: a  InitAlternative: reference to instance of struct arpk with body
    882   ... with parameters
    883     array of char with dimension of Generated Cast of:
    884       Constant Expression (7: signed int)
    885       ... with resolved type:
    886         signed int
    887     ... to:
    888       unsigned long int
    889     ... with resolved type:
    890       unsigned long int
    891     float
    892     float
    893     float
    894 
    895 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    896   Name: a  InitAlternative: reference to instance of struct arpk with body
    897   ... with parameters
    898     array of char with dimension of Generated Cast of:
    899       Constant Expression (7: signed int)
    900       ... with resolved type:
    901         signed int
    902     ... to:
    903       unsigned long int
    904     ... with resolved type:
    905       unsigned long int
    906     float
    907     float
    908     float
    909 
    910 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    911   Name: a  InitAlternative: reference to instance of struct arpk with body
    912   ... with parameters
    913     array of char with dimension of Generated Cast of:
    914       Constant Expression (7: signed int)
    915       ... with resolved type:
    916         signed int
    917     ... to:
    918       unsigned long int
    919     ... with resolved type:
    920       unsigned long int
    921     float
    922     float
    923     float
    924 
    925 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    926   Name: a  InitAlternative: reference to instance of struct arpk with body
    927   ... with parameters
    928     array of char with dimension of Generated Cast of:
    929       Variable Expression: enu7: const instance of enum __anonymous0 with body
    930       ... with resolved type:
    931         const instance of enum __anonymous0 with body
    932     ... to:
    933       unsigned long int
    934     ... with resolved type:
    935       unsigned long int
    936     float
    937     float
    938     float
    939 
    940 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    941   Name: a  InitAlternative: reference to instance of struct arpk with body
    942   ... with parameters
    943     array of char with dimension of Generated Cast of:
    944       Variable Expression: enu7: const instance of enum __anonymous0 with body
    945       ... with resolved type:
    946         const instance of enum __anonymous0 with body
    947     ... to:
    948       unsigned long int
    949     ... with resolved type:
    950       unsigned long int
    951     float
    952     float
    953     float
    954 
    955 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    956   Name: a  InitAlternative: reference to instance of struct arpk with body
    957   ... with parameters
    958     array of char with dimension of Generated Cast of:
    959       Variable Expression: enu7: const instance of enum __anonymous0 with body
    960       ... with resolved type:
    961         const instance of enum __anonymous0 with body
    962     ... to:
    963       unsigned long int
    964     ... with resolved type:
    965       unsigned long int
    966     float
    967     float
    968     float
    969 
    970 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    971   Name: a  InitAlternative: reference to instance of struct arpk with body
    972   ... with parameters
    973     array of char with dimension of Generated Cast of:
    974       Variable Expression: enu7: const instance of enum __anonymous0 with body
    975       ... with resolved type:
    976         const instance of enum __anonymous0 with body
    977     ... to:
    978       unsigned long int
    979     ... with resolved type:
    980       unsigned long int
    981     float
    982     float
    983     float
    984 
    985 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    986   Name: a  InitAlternative: reference to instance of struct arpk with body
    987   ... with parameters
    988     array of char with dimension of Generated Cast of:
    989       Variable Expression: enu7: const instance of enum __anonymous0 with body
    990       ... with resolved type:
    991         const instance of enum __anonymous0 with body
    992     ... to:
    993       unsigned long int
    994     ... with resolved type:
    995       unsigned long int
    996     float
    997     float
    998     float
    999 
    1000 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1001   Name: a  InitAlternative: reference to instance of struct arpk with body
    1002   ... with parameters
    1003     instance of type dim7 (not function type)
    1004     float
    1005     float
    1006     float
    1007 
    1008 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1009   Name: a  InitAlternative: reference to instance of struct arpk with body
    1010   ... with parameters
    1011     instance of type dim7 (not function type)
    1012     float
    1013     float
    1014     float
    1015 
    1016 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1017   Name: a  InitAlternative: reference to instance of struct arpk with body
    1018   ... with parameters
    1019     instance of type dim7 (not function type)
    1020     float
    1021     float
    1022     float
    1023 
    1024 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1025   Name: a  InitAlternative: reference to instance of struct arpk with body
    1026   ... with parameters
    1027     instance of type dim7 (not function type)
    1028     float
    1029     float
    1030     float
    1031 
    1032 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1033   Name: a  InitAlternative: reference to instance of struct arpk with body
    1034   ... with parameters
    1035     instance of type dim7 (not function type)
    1036     float
    1037     float
    1038     float
    1039 
    1040 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1041   Name: a  InitAlternative: reference to instance of struct arpk with body
    1042   ... with parameters
    1043     variable length array of char with dimension of Generated Cast of:
    1044       Variable Expression: _array_dim52: const unsigned long int
    1045       ... with resolved type:
    1046         const unsigned long int
    1047     ... to:
    1048       unsigned long int
    1049     ... with resolved type:
    1050       unsigned long int
    1051     float
    1052     float
    1053     float
    1054 
    1055 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1056   Name: a  InitAlternative: reference to instance of struct arpk with body
    1057   ... with parameters
    1058     variable length array of char with dimension of Generated Cast of:
    1059       Variable Expression: _array_dim54: const unsigned long int
    1060       ... with resolved type:
    1061         const unsigned long int
    1062     ... to:
    1063       unsigned long int
    1064     ... with resolved type:
    1065       unsigned long int
    1066     float
    1067     float
    1068     float
    1069 
    1070 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1071   Name: a  InitAlternative: reference to instance of struct arpk with body
    1072   ... with parameters
    1073     variable length array of char with dimension of Generated Cast of:
    1074       Variable Expression: _array_dim55: const unsigned long int
    1075       ... with resolved type:
    1076         const unsigned long int
    1077     ... to:
    1078       unsigned long int
    1079     ... with resolved type:
    1080       unsigned long int
    1081     float
    1082     float
    1083     float
    1084 
    1085 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1086   Name: a  InitAlternative: reference to instance of struct arpk with body
    1087   ... with parameters
    1088     variable length array of char with dimension of Generated Cast of:
    1089       Variable Expression: _array_dim56: const unsigned long int
    1090       ... with resolved type:
    1091         const unsigned long int
    1092     ... to:
    1093       unsigned long int
    1094     ... with resolved type:
    1095       unsigned long int
    1096     float
    1097     float
    1098     float
    1099 
    1100 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1101   Name: a  InitAlternative: reference to instance of struct arpk with body
    1102   ... with parameters
    1103     variable length array of char with dimension of Generated Cast of:
    1104       Variable Expression: _array_dim57: const unsigned long int
    1105       ... with resolved type:
    1106         const unsigned long int
    1107     ... to:
    1108       unsigned long int
    1109     ... with resolved type:
    1110       unsigned long int
    1111     float
    1112     float
    1113     float
    1114 
    1115 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1116   Name: a  InitAlternative: reference to instance of struct arpk with body
    1117   ... with parameters
    1118     variable length array of char with dimension of Generated Cast of:
    1119       Variable Expression: _array_dim59: const unsigned long int
    1120       ... with resolved type:
    1121         const unsigned long int
    1122     ... to:
    1123       unsigned long int
    1124     ... with resolved type:
    1125       unsigned long int
    1126     float
    1127     float
    1128     float
    1129 
    1130 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1131   Name: a  InitAlternative: reference to instance of struct arpk with body
    1132   ... with parameters
    1133     variable length array of char with dimension of Generated Cast of:
    1134       Variable Expression: cpr7: const signed int
    1135       ... with resolved type:
    1136         const signed int
    1137     ... to:
    1138       unsigned long int
    1139     ... with resolved type:
    1140       unsigned long int
    1141     float
    1142     float
    1143     float
    1144 
    1145 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1146   Name: a  InitAlternative: reference to instance of struct arpk with body
    1147   ... with parameters
    1148     variable length array of char with dimension of Generated Cast of:
    1149       Variable Expression: cpr7: const signed int
    1150       ... with resolved type:
    1151         const signed int
    1152     ... to:
    1153       unsigned long int
    1154     ... with resolved type:
    1155       unsigned long int
    1156     float
    1157     float
    1158     float
    1159 
    1160 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1161   Name: a  InitAlternative: reference to instance of struct arpk with body
    1162   ... with parameters
    1163     variable length array of char with dimension of Generated Cast of:
    1164       Variable Expression: cpr7: const signed int
    1165       ... with resolved type:
    1166         const signed int
    1167     ... to:
    1168       unsigned long int
    1169     ... with resolved type:
    1170       unsigned long int
    1171     float
    1172     float
    1173     float
    1174 
    1175 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1176   Name: a  InitAlternative: reference to instance of struct arpk with body
    1177   ... with parameters
    1178     variable length array of char with dimension of Generated Cast of:
    1179       Variable Expression: cpr7: const signed int
    1180       ... with resolved type:
    1181         const signed int
    1182     ... to:
    1183       unsigned long int
    1184     ... with resolved type:
    1185       unsigned long int
    1186     float
    1187     float
    1188     float
    1189 
    1190 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1191   Name: a  InitAlternative: reference to instance of struct arpk with body
    1192   ... with parameters
    1193     variable length array of char with dimension of Generated Cast of:
    1194       Variable Expression: cpr7: const signed int
    1195       ... with resolved type:
    1196         const signed int
    1197     ... to:
    1198       unsigned long int
    1199     ... with resolved type:
    1200       unsigned long int
    1201     float
    1202     float
    1203     float
    1204 
    1205 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1206   Name: ?=?
    1207 ...to:
    1208   Address of:
    1209     Name: b
    1210   Address of:
    1211     Name: a
    1212 
    1213 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1214   Name: ?=?
    1215 ...to:
    1216   Address of:
    1217     Name: b
    1218   Address of:
    1219     Name: a
    1220 
    1221 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1222   Name: ?=?
    1223 ...to:
    1224   Address of:
    1225     Name: b
    1226   Address of:
    1227     Name: a
    1228 
    1229 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1230   Name: ?=?
    1231 ...to:
    1232   Address of:
    1233     Name: b
    1234   Address of:
    1235     Name: a
    1236 
    1237 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1238   Name: ?=?
    1239 ...to:
    1240   Address of:
    1241     Name: b
    1242   Address of:
    1243     Name: a
    1244 
    1245 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1246   Name: ?=?
    1247 ...to:
    1248   Address of:
    1249     Name: b
    1250   Address of:
    1251     Name: a
    1252 
    1253 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1254   Name: ?=?
    1255 ...to:
    1256   Address of:
    1257     Name: b
    1258   Address of:
    1259     Name: a
    1260 
    1261 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1262   Name: ?=?
    1263 ...to:
    1264   Address of:
    1265     Name: b
    1266   Address of:
    1267     Name: a
    1268 
    1269 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1270   Name: ?=?
    1271 ...to:
    1272   Address of:
    1273     Name: b
    1274   Address of:
    1275     Name: a
    1276 
    1277 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1278   Name: ?=?
    1279 ...to:
    1280   Address of:
    1281     Name: b
    1282   Address of:
    1283     Name: a
    1284 
    1285 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1286   Name: ?=?
    1287 ...to:
    1288   Address of:
    1289     Name: b
    1290   Address of:
    1291     Name: a
    1292 
    1293 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1294   Name: ?=?
    1295 ...to:
    1296   Address of:
    1297     Name: b
    1298   Address of:
    1299     Name: a
    1300 
    1301 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1302   Name: ?=?
    1303 ...to:
    1304   Address of:
    1305     Name: b
    1306   Address of:
    1307     Name: a
    1308 
    1309 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1310   Name: ?=?
    1311 ...to:
    1312   Address of:
    1313     Name: b
    1314   Address of:
    1315     Name: a
    1316 
    1317 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1318   Name: ?=?
    1319 ...to:
    1320   Address of:
    1321     Name: b
    1322   Address of:
    1323     Name: a
    1324 
    1325 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1326   Name: ?=?
    1327 ...to:
    1328   Address of:
    1329     Name: b
    1330   Address of:
    1331     Name: a
    1332 
    1333 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1334   Name: ?=?
    1335 ...to:
    1336   Address of:
    1337     Name: b
    1338   Address of:
    1339     Name: a
    1340 
    1341 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1342   Name: ?=?
    1343 ...to:
    1344   Address of:
    1345     Name: b
    1346   Address of:
    1347     Name: a
    1348 
    1349 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1350   Name: ?=?
    1351 ...to:
    1352   Address of:
    1353     Name: b
    1354   Address of:
    1355     Name: a
    1356 
    1357 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1358   Name: ?=?
    1359 ...to:
    1360   Address of:
    1361     Name: b
    1362   Address of:
    1363     Name: a
    1364 
    1365 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1366   Name: ?=?
    1367 ...to:
    1368   Address of:
    1369     Name: b
    1370   Address of:
    1371     Name: a
    1372 
    1373 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1374   Name: ?=?
    1375 ...to:
    1376   Address of:
    1377     Name: b
    1378   Address of:
    1379     Name: a
    1380 
    1381 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1382   Name: ?=?
    1383 ...to:
    1384   Address of:
    1385     Name: b
    1386   Address of:
    1387     Name: a
    1388 
    1389 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1390   Name: ?=?
    1391 ...to:
    1392   Address of:
    1393     Name: b
    1394   Address of:
    1395     Name: a
    1396 
    1397 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1398   Name: ?=?
    1399 ...to:
    1400   Address of:
    1401     Name: b
    1402   Address of:
    1403     Name: a
    1404 
    1405 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1406   Name: ?=?
    1407 ...to:
    1408   Address of:
    1409     Name: b
    1410   Address of:
    1411     Name: a
    1412 
    1413 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1414   Name: zip
    1415 ...to:
    1416   Name: a
    1417   Name: b
    1418 
    1419 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1420   Name: zip
    1421 ...to:
    1422   Name: a
    1423   Name: b
    1424 
    1425 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1426   Name: zip
    1427 ...to:
    1428   Name: a
    1429   Name: b
    1430 
    1431 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1432   Name: zip
    1433 ...to:
    1434   Name: a
    1435   Name: b
    1436 
    1437 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1438   Name: zip
    1439 ...to:
    1440   Name: a
    1441   Name: b
    1442 
    1443 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1444   Name: zip
    1445 ...to:
    1446   Name: a
    1447   Name: b
    1448 
    1449 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1450   Name: zip
    1451 ...to:
    1452   Name: a
    1453   Name: b
    1454 
    1455 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1456   Name: zip
    1457 ...to:
    1458   Name: a
    1459   Name: b
    1460 
    1461 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1462   Name: zip
    1463 ...to:
    1464   Name: a
    1465   Name: b
    1466 
    1467 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1468   Name: zip
    1469 ...to:
    1470   Name: a
    1471   Name: b
    1472 
    1473 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1474   Name: zip
    1475 ...to:
    1476   Name: a
    1477   Name: b
    1478 
    1479 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1480   Name: zip
    1481 ...to:
    1482   Name: a
    1483   Name: b
    1484 
    1485 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1486   Name: zip
    1487 ...to:
    1488   Name: a
    1489   Name: b
    1490 
    1491 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1492   Name: zip
    1493 ...to:
    1494   Name: a
    1495   Name: b
    1496 
    1497 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1498   Name: zip
    1499 ...to:
    1500   Name: a
    1501   Name: b
    1502 
    1503 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1504   Name: zip
    1505 ...to:
    1506   Name: a
    1507   Name: b
    1508 
    1509 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1510   Name: zip
    1511 ...to:
    1512   Name: a
    1513   Name: b
    1514 
    1515 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1516   Name: zip
    1517 ...to:
    1518   Name: a
    1519   Name: b
    1520 
    1521 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1522   Name: zip
    1523 ...to:
    1524   Name: a
    1525   Name: b
    1526 
    1527 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1528   Name: zip
    1529 ...to:
    1530   Name: a
    1531   Name: b
    1532 
    1533 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1534   Name: zip
    1535 ...to:
    1536   Name: a
    1537   Name: b
    1538 
    1539 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1540   Name: zip
    1541 ...to:
    1542   Name: a
    1543   Name: b
    1544 
    1545 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1546   Name: zip
    1547 ...to:
    1548   Name: a
    1549   Name: b
    1550 
    1551 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1552   Name: zip
    1553 ...to:
    1554   Name: a
    1555   Name: b
    1556 
    1557 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1558   Name: zip
    1559 ...to:
    1560   Name: a
    1561   Name: b
    1562 
    1563 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1564   Name: zip
    1565 ...to:
    1566   Name: a
    1567   Name: b
    1568 
     719array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     720  Name: a  InitAlternative: reference to instance of struct arpk with body
     721  ... with parameters
     722    variable length array of char with dimension of Generated Cast of:
     723      Variable Expression: mut7: signed int
     724      ... with resolved type:
     725        signed int
     726    ... to:
     727      unsigned long int
     728    ... with resolved type:
     729      unsigned long int
     730    float
     731    float
     732    float
     733
     734array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     735  Name: a  InitAlternative: reference to instance of struct arpk with body
     736  ... with parameters
     737    variable length array of char with dimension of Generated Cast of:
     738      Variable Expression: mut7: signed int
     739      ... with resolved type:
     740        signed int
     741    ... to:
     742      unsigned long int
     743    ... with resolved type:
     744      unsigned long int
     745    float
     746    float
     747    float
     748
     749array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     750  Name: a  InitAlternative: reference to instance of struct arpk with body
     751  ... with parameters
     752    variable length array of char with dimension of Generated Cast of:
     753      Variable Expression: mut7: signed int
     754      ... with resolved type:
     755        signed int
     756    ... to:
     757      unsigned long int
     758    ... with resolved type:
     759      unsigned long int
     760    float
     761    float
     762    float
     763
     764array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     765  Name: ?=?
     766...to:
     767  Address of:
     768    Name: b
     769  Address of:
     770    Name: a
     771
     772array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     773  Name: ?=?
     774...to:
     775  Address of:
     776    Name: b
     777  Address of:
     778    Name: a
     779
     780array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     781  Name: ?=?
     782...to:
     783  Address of:
     784    Name: b
     785  Address of:
     786    Name: a
     787
     788array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     789  Name: ?=?
     790...to:
     791  Address of:
     792    Name: b
     793  Address of:
     794    Name: a
     795
     796array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     797  Name: ?=?
     798...to:
     799  Address of:
     800    Name: b
     801  Address of:
     802    Name: a
     803
     804array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     805  Name: ?=?
     806...to:
     807  Address of:
     808    Name: b
     809  Address of:
     810    Name: a
     811
     812array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     813  Name: ?=?
     814...to:
     815  Address of:
     816    Name: b
     817  Address of:
     818    Name: a
     819
     820array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     821  Name: ?=?
     822...to:
     823  Address of:
     824    Name: b
     825  Address of:
     826    Name: a
     827
     828array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     829  Name: ?=?
     830...to:
     831  Address of:
     832    Name: b
     833  Address of:
     834    Name: a
     835
     836array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     837  Name: ?=?
     838...to:
     839  Address of:
     840    Name: b
     841  Address of:
     842    Name: a
     843
     844array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     845  Name: ?=?
     846...to:
     847  Address of:
     848    Name: b
     849  Address of:
     850    Name: a
     851
     852array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     853  Name: ?=?
     854...to:
     855  Address of:
     856    Name: b
     857  Address of:
     858    Name: a
     859
     860array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     861  Name: ?=?
     862...to:
     863  Address of:
     864    Name: b
     865  Address of:
     866    Name: a
     867
     868array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     869  Name: ?=?
     870...to:
     871  Address of:
     872    Name: b
     873  Address of:
     874    Name: a
     875
     876array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     877  Name: ?=?
     878...to:
     879  Address of:
     880    Name: b
     881  Address of:
     882    Name: a
     883
     884array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     885  Name: ?=?
     886...to:
     887  Address of:
     888    Name: b
     889  Address of:
     890    Name: a
     891
     892array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     893  Name: ?=?
     894...to:
     895  Address of:
     896    Name: b
     897  Address of:
     898    Name: a
     899
     900array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     901  Name: zip
     902...to:
     903  Name: a
     904  Name: b
     905
     906array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     907  Name: zip
     908...to:
     909  Name: a
     910  Name: b
     911
     912array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     913  Name: zip
     914...to:
     915  Name: a
     916  Name: b
     917
     918array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     919  Name: zip
     920...to:
     921  Name: a
     922  Name: b
     923
     924array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     925  Name: zip
     926...to:
     927  Name: a
     928  Name: b
     929
     930array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     931  Name: zip
     932...to:
     933  Name: a
     934  Name: b
     935
     936array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     937  Name: zip
     938...to:
     939  Name: a
     940  Name: b
     941
     942array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     943  Name: zip
     944...to:
     945  Name: a
     946  Name: b
     947
     948array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     949  Name: zip
     950...to:
     951  Name: a
     952  Name: b
     953
     954array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     955  Name: zip
     956...to:
     957  Name: a
     958  Name: b
     959
     960array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     961  Name: zip
     962...to:
     963  Name: a
     964  Name: b
     965
     966array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     967  Name: zip
     968...to:
     969  Name: a
     970  Name: b
     971
     972array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     973  Name: zip
     974...to:
     975  Name: a
     976  Name: b
     977
     978array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     979  Name: zip
     980...to:
     981  Name: a
     982  Name: b
     983
     984array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     985  Name: zip
     986...to:
     987  Name: a
     988  Name: b
     989
     990array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     991  Name: zip
     992...to:
     993  Name: a
     994  Name: b
     995
     996array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     997  Name: zip
     998...to:
     999  Name: a
     1000  Name: b
     1001
  • tests/array-container/.expect/dimexpr-match-cfa-ERRS.x86.txt

    r6065281f r3bf9d10  
    1 array-container/dimexpr-match-cfa.cfa:59:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    2   Name: f
    3 ...to:
    4   Address of:
    5     Name: a
    6 
    7 array-container/dimexpr-match-cfa.cfa:59:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    8   Name: f
    9 ...to:
    10   Address of:
    11     Name: a
    12 
    13 array-container/dimexpr-match-cfa.cfa:59:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    14   Name: f
    15 ...to:
    16   Address of:
    17     Name: a
    18 
    19 array-container/dimexpr-match-cfa.cfa:59:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    20   Name: f
    21 ...to:
    22   Address of:
    23     Name: a
    24 
    25 array-container/dimexpr-match-cfa.cfa:59:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    26   Name: f
    27 ...to:
    28   Address of:
    29     Name: a
    30 
    31 array-container/dimexpr-match-cfa.cfa:59:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    32   Name: f
    33 ...to:
    34   Address of:
    35     Name: a
    36 
    37 array-container/dimexpr-match-cfa.cfa:59:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    38   Name: f
    39 ...to:
    40   Address of:
    41     Name: a
    42 
    43 array-container/dimexpr-match-cfa.cfa:59:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    44   Name: f
    45 ...to:
    46   Address of:
    47     Name: a
    48 
    49 array-container/dimexpr-match-cfa.cfa:59:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    50   Name: f
    51 ...to:
    52   Address of:
    53     Name: a
    54 
    551array-container/dimexpr-match-cfa.cfa:59:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    562  Name: f
     
    208154  ... with parameters
    209155    array of char with dimension of Generated Cast of:
     156      Variable Expression: enu7: const instance of enum __anonymous0 with body
     157      ... with resolved type:
     158        const instance of enum __anonymous0 with body
     159    ... to:
     160      unsigned int
     161    ... with resolved type:
     162      unsigned int
     163    float
     164    float
     165    float
     166
     167array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     168  Address of:
     169    Name: a  InitAlternative: pointer to instance of struct arpk with body
     170  ... with parameters
     171    array of char with dimension of Generated Cast of:
     172      Variable Expression: enu7: const instance of enum __anonymous0 with body
     173      ... with resolved type:
     174        const instance of enum __anonymous0 with body
     175    ... to:
     176      unsigned int
     177    ... with resolved type:
     178      unsigned int
     179    float
     180    float
     181    float
     182
     183array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     184  Address of:
     185    Name: a  InitAlternative: pointer to instance of struct arpk with body
     186  ... with parameters
     187    array of char with dimension of Generated Cast of:
     188      Variable Expression: enu7: const instance of enum __anonymous0 with body
     189      ... with resolved type:
     190        const instance of enum __anonymous0 with body
     191    ... to:
     192      unsigned int
     193    ... with resolved type:
     194      unsigned int
     195    float
     196    float
     197    float
     198
     199array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     200  Address of:
     201    Name: a  InitAlternative: pointer to instance of struct arpk with body
     202  ... with parameters
     203    instance of type dim7 (not function type)
     204    float
     205    float
     206    float
     207
     208array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     209  Address of:
     210    Name: a  InitAlternative: pointer to instance of struct arpk with body
     211  ... with parameters
     212    instance of type dim7 (not function type)
     213    float
     214    float
     215    float
     216
     217array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     218  Address of:
     219    Name: a  InitAlternative: pointer to instance of struct arpk with body
     220  ... with parameters
     221    instance of type dim7 (not function type)
     222    float
     223    float
     224    float
     225
     226array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     227  Address of:
     228    Name: a  InitAlternative: pointer to instance of struct arpk with body
     229  ... with parameters
     230    instance of type dim7 (not function type)
     231    float
     232    float
     233    float
     234
     235array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     236  Address of:
     237    Name: a  InitAlternative: pointer to instance of struct arpk with body
     238  ... with parameters
     239    instance of type dim7 (not function type)
     240    float
     241    float
     242    float
     243
     244array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     245  Address of:
     246    Name: a  InitAlternative: pointer to instance of struct arpk with body
     247  ... with parameters
     248    variable length array of char with dimension of Generated Cast of:
     249      Variable Expression: cpr7: const signed int
     250      ... with resolved type:
     251        const signed int
     252    ... to:
     253      unsigned int
     254    ... with resolved type:
     255      unsigned int
     256    float
     257    float
     258    float
     259
     260array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     261  Address of:
     262    Name: a  InitAlternative: pointer to instance of struct arpk with body
     263  ... with parameters
     264    variable length array of char with dimension of Generated Cast of:
     265      Variable Expression: cpr7: const signed int
     266      ... with resolved type:
     267        const signed int
     268    ... to:
     269      unsigned int
     270    ... with resolved type:
     271      unsigned int
     272    float
     273    float
     274    float
     275
     276array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     277  Address of:
     278    Name: a  InitAlternative: pointer to instance of struct arpk with body
     279  ... with parameters
     280    variable length array of char with dimension of Generated Cast of:
     281      Variable Expression: cpr7: const signed int
     282      ... with resolved type:
     283        const signed int
     284    ... to:
     285      unsigned int
     286    ... with resolved type:
     287      unsigned int
     288    float
     289    float
     290    float
     291
     292array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     293  Address of:
     294    Name: a  InitAlternative: pointer to instance of struct arpk with body
     295  ... with parameters
     296    variable length array of char with dimension of Generated Cast of:
     297      Variable Expression: mut7: signed int
     298      ... with resolved type:
     299        signed int
     300    ... to:
     301      unsigned int
     302    ... with resolved type:
     303      unsigned int
     304    float
     305    float
     306    float
     307
     308array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     309  Address of:
     310    Name: a  InitAlternative: pointer to instance of struct arpk with body
     311  ... with parameters
     312    variable length array of char with dimension of Generated Cast of:
     313      Variable Expression: mut7: signed int
     314      ... with resolved type:
     315        signed int
     316    ... to:
     317      unsigned int
     318    ... with resolved type:
     319      unsigned int
     320    float
     321    float
     322    float
     323
     324array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     325  Address of:
     326    Name: a  InitAlternative: pointer to instance of struct arpk with body
     327  ... with parameters
     328    variable length array of char with dimension of Generated Cast of:
     329      Variable Expression: mut7: signed int
     330      ... with resolved type:
     331        signed int
     332    ... to:
     333      unsigned int
     334    ... with resolved type:
     335      unsigned int
     336    float
     337    float
     338    float
     339
     340array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     341  Name: ?=?
     342...to:
     343  Name: b
     344  Address of:
     345    Name: a
     346
     347array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     348  Name: ?=?
     349...to:
     350  Name: b
     351  Address of:
     352    Name: a
     353
     354array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     355  Name: ?=?
     356...to:
     357  Name: b
     358  Address of:
     359    Name: a
     360
     361array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     362  Name: ?=?
     363...to:
     364  Name: b
     365  Address of:
     366    Name: a
     367
     368array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     369  Name: ?=?
     370...to:
     371  Name: b
     372  Address of:
     373    Name: a
     374
     375array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     376  Name: ?=?
     377...to:
     378  Name: b
     379  Address of:
     380    Name: a
     381
     382array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     383  Name: ?=?
     384...to:
     385  Name: b
     386  Address of:
     387    Name: a
     388
     389array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     390  Name: ?=?
     391...to:
     392  Name: b
     393  Address of:
     394    Name: a
     395
     396array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     397  Name: ?=?
     398...to:
     399  Name: b
     400  Address of:
     401    Name: a
     402
     403array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     404  Name: ?=?
     405...to:
     406  Name: b
     407  Address of:
     408    Name: a
     409
     410array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     411  Name: ?=?
     412...to:
     413  Name: b
     414  Address of:
     415    Name: a
     416
     417array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     418  Name: ?=?
     419...to:
     420  Name: b
     421  Address of:
     422    Name: a
     423
     424array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     425  Name: ?=?
     426...to:
     427  Name: b
     428  Address of:
     429    Name: a
     430
     431array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     432  Name: ?=?
     433...to:
     434  Name: b
     435  Address of:
     436    Name: a
     437
     438array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     439  Name: ?=?
     440...to:
     441  Name: b
     442  Address of:
     443    Name: a
     444
     445array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     446  Name: ?=?
     447...to:
     448  Name: b
     449  Address of:
     450    Name: a
     451
     452array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     453  Name: ?=?
     454...to:
     455  Name: b
     456  Address of:
     457    Name: a
     458
     459array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     460  Name: f
     461...to:
     462  Name: a
     463
     464array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     465  Name: f
     466...to:
     467  Name: a
     468
     469array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     470  Name: f
     471...to:
     472  Name: a
     473
     474array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     475  Name: f
     476...to:
     477  Name: a
     478
     479array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     480  Name: f
     481...to:
     482  Name: a
     483
     484array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     485  Name: f
     486...to:
     487  Name: a
     488
     489array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     490  Name: f
     491...to:
     492  Name: a
     493
     494array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     495  Name: f
     496...to:
     497  Name: a
     498
     499array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     500  Name: f
     501...to:
     502  Name: a
     503
     504array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     505  Name: f
     506...to:
     507  Name: a
     508
     509array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     510  Name: f
     511...to:
     512  Name: a
     513
     514array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     515  Name: f
     516...to:
     517  Name: a
     518
     519array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     520  Name: f
     521...to:
     522  Name: a
     523
     524array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     525  Name: f
     526...to:
     527  Name: a
     528
     529array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     530  Name: f
     531...to:
     532  Name: a
     533
     534array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     535  Name: f
     536...to:
     537  Name: a
     538
     539array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     540  Name: f
     541...to:
     542  Name: a
     543
     544array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     545  Name: a  InitAlternative: reference to instance of struct arpk with body
     546  ... with parameters
     547    array of char with dimension of Generated Cast of:
    210548      Constant Expression (7: signed int)
    211549      ... with resolved type:
     
    219557    float
    220558
    221 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    222   Address of:
    223     Name: a  InitAlternative: pointer to instance of struct arpk with body
     559array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     560  Name: a  InitAlternative: reference to instance of struct arpk with body
    224561  ... with parameters
    225562    array of char with dimension of Generated Cast of:
     
    235572    float
    236573
    237 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    238   Address of:
    239     Name: a  InitAlternative: pointer to instance of struct arpk with body
     574array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     575  Name: a  InitAlternative: reference to instance of struct arpk with body
     576  ... with parameters
     577    array of char with dimension of Generated Cast of:
     578      Constant Expression (7: signed int)
     579      ... with resolved type:
     580        signed int
     581    ... to:
     582      unsigned int
     583    ... with resolved type:
     584      unsigned int
     585    float
     586    float
     587    float
     588
     589array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     590  Name: a  InitAlternative: reference to instance of struct arpk with body
    240591  ... with parameters
    241592    array of char with dimension of Generated Cast of:
     
    251602    float
    252603
    253 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    254   Address of:
    255     Name: a  InitAlternative: pointer to instance of struct arpk with body
     604array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     605  Name: a  InitAlternative: reference to instance of struct arpk with body
    256606  ... with parameters
    257607    array of char with dimension of Generated Cast of:
     
    267617    float
    268618
    269 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    270   Address of:
    271     Name: a  InitAlternative: pointer to instance of struct arpk with body
     619array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     620  Name: a  InitAlternative: reference to instance of struct arpk with body
    272621  ... with parameters
    273622    array of char with dimension of Generated Cast of:
     
    283632    float
    284633
    285 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    286   Address of:
    287     Name: a  InitAlternative: pointer to instance of struct arpk with body
    288   ... with parameters
    289     array of char with dimension of Generated Cast of:
    290       Variable Expression: enu7: const instance of enum __anonymous0 with body
    291       ... with resolved type:
    292         const instance of enum __anonymous0 with body
    293     ... to:
    294       unsigned int
    295     ... with resolved type:
    296       unsigned int
    297     float
    298     float
    299     float
    300 
    301 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    302   Address of:
    303     Name: a  InitAlternative: pointer to instance of struct arpk with body
    304   ... with parameters
    305     array of char with dimension of Generated Cast of:
    306       Variable Expression: enu7: const instance of enum __anonymous0 with body
    307       ... with resolved type:
    308         const instance of enum __anonymous0 with body
    309     ... to:
    310       unsigned int
    311     ... with resolved type:
    312       unsigned int
    313     float
    314     float
    315     float
    316 
    317 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    318   Address of:
    319     Name: a  InitAlternative: pointer to instance of struct arpk with body
     634array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     635  Name: a  InitAlternative: reference to instance of struct arpk with body
    320636  ... with parameters
    321637    instance of type dim7 (not function type)
     
    324640    float
    325641
    326 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    327   Address of:
    328     Name: a  InitAlternative: pointer to instance of struct arpk with body
     642array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     643  Name: a  InitAlternative: reference to instance of struct arpk with body
    329644  ... with parameters
    330645    instance of type dim7 (not function type)
     
    333648    float
    334649
    335 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    336   Address of:
    337     Name: a  InitAlternative: pointer to instance of struct arpk with body
     650array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     651  Name: a  InitAlternative: reference to instance of struct arpk with body
    338652  ... with parameters
    339653    instance of type dim7 (not function type)
     
    342656    float
    343657
    344 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    345   Address of:
    346     Name: a  InitAlternative: pointer to instance of struct arpk with body
     658array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     659  Name: a  InitAlternative: reference to instance of struct arpk with body
    347660  ... with parameters
    348661    instance of type dim7 (not function type)
     
    351664    float
    352665
    353 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    354   Address of:
    355     Name: a  InitAlternative: pointer to instance of struct arpk with body
     666array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     667  Name: a  InitAlternative: reference to instance of struct arpk with body
    356668  ... with parameters
    357669    instance of type dim7 (not function type)
     
    360672    float
    361673
    362 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    363   Address of:
    364     Name: a  InitAlternative: pointer to instance of struct arpk with body
    365   ... with parameters
    366     variable length array of char with dimension of Generated Cast of:
    367       Variable Expression: _array_dim16: const unsigned int
    368       ... with resolved type:
    369         const unsigned int
    370     ... to:
    371       unsigned int
    372     ... with resolved type:
    373       unsigned int
    374     float
    375     float
    376     float
    377 
    378 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    379   Address of:
    380     Name: a  InitAlternative: pointer to instance of struct arpk with body
    381   ... with parameters
    382     variable length array of char with dimension of Generated Cast of:
    383       Variable Expression: _array_dim18: const unsigned int
    384       ... with resolved type:
    385         const unsigned int
    386     ... to:
    387       unsigned int
    388     ... with resolved type:
    389       unsigned int
    390     float
    391     float
    392     float
    393 
    394 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    395   Address of:
    396     Name: a  InitAlternative: pointer to instance of struct arpk with body
    397   ... with parameters
    398     variable length array of char with dimension of Generated Cast of:
    399       Variable Expression: _array_dim19: const unsigned int
    400       ... with resolved type:
    401         const unsigned int
    402     ... to:
    403       unsigned int
    404     ... with resolved type:
    405       unsigned int
    406     float
    407     float
    408     float
    409 
    410 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    411   Address of:
    412     Name: a  InitAlternative: pointer to instance of struct arpk with body
    413   ... with parameters
    414     variable length array of char with dimension of Generated Cast of:
    415       Variable Expression: _array_dim20: const unsigned int
    416       ... with resolved type:
    417         const unsigned int
    418     ... to:
    419       unsigned int
    420     ... with resolved type:
    421       unsigned int
    422     float
    423     float
    424     float
    425 
    426 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    427   Address of:
    428     Name: a  InitAlternative: pointer to instance of struct arpk with body
    429   ... with parameters
    430     variable length array of char with dimension of Generated Cast of:
    431       Variable Expression: _array_dim21: const unsigned int
    432       ... with resolved type:
    433         const unsigned int
    434     ... to:
    435       unsigned int
    436     ... with resolved type:
    437       unsigned int
    438     float
    439     float
    440     float
    441 
    442 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    443   Address of:
    444     Name: a  InitAlternative: pointer to instance of struct arpk with body
    445   ... with parameters
    446     variable length array of char with dimension of Generated Cast of:
    447       Variable Expression: _array_dim23: const unsigned int
    448       ... with resolved type:
    449         const unsigned int
    450     ... to:
    451       unsigned int
    452     ... with resolved type:
    453       unsigned int
    454     float
    455     float
    456     float
    457 
    458 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    459   Address of:
    460     Name: a  InitAlternative: pointer to instance of struct arpk with body
     674array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     675  Name: a  InitAlternative: reference to instance of struct arpk with body
    461676  ... with parameters
    462677    variable length array of char with dimension of Generated Cast of:
     
    472687    float
    473688
    474 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    475   Address of:
    476     Name: a  InitAlternative: pointer to instance of struct arpk with body
     689array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     690  Name: a  InitAlternative: reference to instance of struct arpk with body
    477691  ... with parameters
    478692    variable length array of char with dimension of Generated Cast of:
     
    488702    float
    489703
    490 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    491   Address of:
    492     Name: a  InitAlternative: pointer to instance of struct arpk with body
     704array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     705  Name: a  InitAlternative: reference to instance of struct arpk with body
    493706  ... with parameters
    494707    variable length array of char with dimension of Generated Cast of:
     
    504717    float
    505718
    506 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    507   Address of:
    508     Name: a  InitAlternative: pointer to instance of struct arpk with body
    509   ... with parameters
    510     variable length array of char with dimension of Generated Cast of:
    511       Variable Expression: cpr7: const signed int
    512       ... with resolved type:
    513         const signed int
    514     ... to:
    515       unsigned int
    516     ... with resolved type:
    517       unsigned int
    518     float
    519     float
    520     float
    521 
    522 array-container/dimexpr-match-cfa.cfa:67:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    523   Address of:
    524     Name: a  InitAlternative: pointer to instance of struct arpk with body
    525   ... with parameters
    526     variable length array of char with dimension of Generated Cast of:
    527       Variable Expression: cpr7: const signed int
    528       ... with resolved type:
    529         const signed int
    530     ... to:
    531       unsigned int
    532     ... with resolved type:
    533       unsigned int
    534     float
    535     float
    536     float
    537 
    538 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    539   Name: ?=?
    540 ...to:
    541   Name: b
    542   Address of:
    543     Name: a
    544 
    545 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    546   Name: ?=?
    547 ...to:
    548   Name: b
    549   Address of:
    550     Name: a
    551 
    552 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    553   Name: ?=?
    554 ...to:
    555   Name: b
    556   Address of:
    557     Name: a
    558 
    559 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    560   Name: ?=?
    561 ...to:
    562   Name: b
    563   Address of:
    564     Name: a
    565 
    566 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    567   Name: ?=?
    568 ...to:
    569   Name: b
    570   Address of:
    571     Name: a
    572 
    573 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    574   Name: ?=?
    575 ...to:
    576   Name: b
    577   Address of:
    578     Name: a
    579 
    580 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    581   Name: ?=?
    582 ...to:
    583   Name: b
    584   Address of:
    585     Name: a
    586 
    587 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    588   Name: ?=?
    589 ...to:
    590   Name: b
    591   Address of:
    592     Name: a
    593 
    594 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    595   Name: ?=?
    596 ...to:
    597   Name: b
    598   Address of:
    599     Name: a
    600 
    601 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    602   Name: ?=?
    603 ...to:
    604   Name: b
    605   Address of:
    606     Name: a
    607 
    608 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    609   Name: ?=?
    610 ...to:
    611   Name: b
    612   Address of:
    613     Name: a
    614 
    615 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    616   Name: ?=?
    617 ...to:
    618   Name: b
    619   Address of:
    620     Name: a
    621 
    622 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    623   Name: ?=?
    624 ...to:
    625   Name: b
    626   Address of:
    627     Name: a
    628 
    629 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    630   Name: ?=?
    631 ...to:
    632   Name: b
    633   Address of:
    634     Name: a
    635 
    636 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    637   Name: ?=?
    638 ...to:
    639   Name: b
    640   Address of:
    641     Name: a
    642 
    643 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    644   Name: ?=?
    645 ...to:
    646   Name: b
    647   Address of:
    648     Name: a
    649 
    650 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    651   Name: ?=?
    652 ...to:
    653   Name: b
    654   Address of:
    655     Name: a
    656 
    657 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    658   Name: ?=?
    659 ...to:
    660   Name: b
    661   Address of:
    662     Name: a
    663 
    664 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    665   Name: ?=?
    666 ...to:
    667   Name: b
    668   Address of:
    669     Name: a
    670 
    671 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    672   Name: ?=?
    673 ...to:
    674   Name: b
    675   Address of:
    676     Name: a
    677 
    678 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    679   Name: ?=?
    680 ...to:
    681   Name: b
    682   Address of:
    683     Name: a
    684 
    685 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    686   Name: ?=?
    687 ...to:
    688   Name: b
    689   Address of:
    690     Name: a
    691 
    692 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    693   Name: ?=?
    694 ...to:
    695   Name: b
    696   Address of:
    697     Name: a
    698 
    699 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    700   Name: ?=?
    701 ...to:
    702   Name: b
    703   Address of:
    704     Name: a
    705 
    706 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    707   Name: ?=?
    708 ...to:
    709   Name: b
    710   Address of:
    711     Name: a
    712 
    713 array-container/dimexpr-match-cfa.cfa:76:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    714   Name: ?=?
    715 ...to:
    716   Name: b
    717   Address of:
    718     Name: a
    719 
    720 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    721   Name: f
    722 ...to:
    723   Name: a
    724 
    725 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    726   Name: f
    727 ...to:
    728   Name: a
    729 
    730 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    731   Name: f
    732 ...to:
    733   Name: a
    734 
    735 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    736   Name: f
    737 ...to:
    738   Name: a
    739 
    740 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    741   Name: f
    742 ...to:
    743   Name: a
    744 
    745 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    746   Name: f
    747 ...to:
    748   Name: a
    749 
    750 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    751   Name: f
    752 ...to:
    753   Name: a
    754 
    755 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    756   Name: f
    757 ...to:
    758   Name: a
    759 
    760 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    761   Name: f
    762 ...to:
    763   Name: a
    764 
    765 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    766   Name: f
    767 ...to:
    768   Name: a
    769 
    770 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    771   Name: f
    772 ...to:
    773   Name: a
    774 
    775 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    776   Name: f
    777 ...to:
    778   Name: a
    779 
    780 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    781   Name: f
    782 ...to:
    783   Name: a
    784 
    785 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    786   Name: f
    787 ...to:
    788   Name: a
    789 
    790 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    791   Name: f
    792 ...to:
    793   Name: a
    794 
    795 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    796   Name: f
    797 ...to:
    798   Name: a
    799 
    800 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    801   Name: f
    802 ...to:
    803   Name: a
    804 
    805 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    806   Name: f
    807 ...to:
    808   Name: a
    809 
    810 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    811   Name: f
    812 ...to:
    813   Name: a
    814 
    815 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    816   Name: f
    817 ...to:
    818   Name: a
    819 
    820 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    821   Name: f
    822 ...to:
    823   Name: a
    824 
    825 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    826   Name: f
    827 ...to:
    828   Name: a
    829 
    830 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    831   Name: f
    832 ...to:
    833   Name: a
    834 
    835 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    836   Name: f
    837 ...to:
    838   Name: a
    839 
    840 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    841   Name: f
    842 ...to:
    843   Name: a
    844 
    845 array-container/dimexpr-match-cfa.cfa:85:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    846   Name: f
    847 ...to:
    848   Name: a
    849 
    850 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    851   Name: a  InitAlternative: reference to instance of struct arpk with body
    852   ... with parameters
    853     array of char with dimension of Generated Cast of:
    854       Constant Expression (7: signed int)
    855       ... with resolved type:
    856         signed int
    857     ... to:
    858       unsigned int
    859     ... with resolved type:
    860       unsigned int
    861     float
    862     float
    863     float
    864 
    865 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    866   Name: a  InitAlternative: reference to instance of struct arpk with body
    867   ... with parameters
    868     array of char with dimension of Generated Cast of:
    869       Constant Expression (7: signed int)
    870       ... with resolved type:
    871         signed int
    872     ... to:
    873       unsigned int
    874     ... with resolved type:
    875       unsigned int
    876     float
    877     float
    878     float
    879 
    880 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    881   Name: a  InitAlternative: reference to instance of struct arpk with body
    882   ... with parameters
    883     array of char with dimension of Generated Cast of:
    884       Constant Expression (7: signed int)
    885       ... with resolved type:
    886         signed int
    887     ... to:
    888       unsigned int
    889     ... with resolved type:
    890       unsigned int
    891     float
    892     float
    893     float
    894 
    895 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    896   Name: a  InitAlternative: reference to instance of struct arpk with body
    897   ... with parameters
    898     array of char with dimension of Generated Cast of:
    899       Constant Expression (7: signed int)
    900       ... with resolved type:
    901         signed int
    902     ... to:
    903       unsigned int
    904     ... with resolved type:
    905       unsigned int
    906     float
    907     float
    908     float
    909 
    910 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    911   Name: a  InitAlternative: reference to instance of struct arpk with body
    912   ... with parameters
    913     array of char with dimension of Generated Cast of:
    914       Constant Expression (7: signed int)
    915       ... with resolved type:
    916         signed int
    917     ... to:
    918       unsigned int
    919     ... with resolved type:
    920       unsigned int
    921     float
    922     float
    923     float
    924 
    925 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    926   Name: a  InitAlternative: reference to instance of struct arpk with body
    927   ... with parameters
    928     array of char with dimension of Generated Cast of:
    929       Variable Expression: enu7: const instance of enum __anonymous0 with body
    930       ... with resolved type:
    931         const instance of enum __anonymous0 with body
    932     ... to:
    933       unsigned int
    934     ... with resolved type:
    935       unsigned int
    936     float
    937     float
    938     float
    939 
    940 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    941   Name: a  InitAlternative: reference to instance of struct arpk with body
    942   ... with parameters
    943     array of char with dimension of Generated Cast of:
    944       Variable Expression: enu7: const instance of enum __anonymous0 with body
    945       ... with resolved type:
    946         const instance of enum __anonymous0 with body
    947     ... to:
    948       unsigned int
    949     ... with resolved type:
    950       unsigned int
    951     float
    952     float
    953     float
    954 
    955 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    956   Name: a  InitAlternative: reference to instance of struct arpk with body
    957   ... with parameters
    958     array of char with dimension of Generated Cast of:
    959       Variable Expression: enu7: const instance of enum __anonymous0 with body
    960       ... with resolved type:
    961         const instance of enum __anonymous0 with body
    962     ... to:
    963       unsigned int
    964     ... with resolved type:
    965       unsigned int
    966     float
    967     float
    968     float
    969 
    970 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    971   Name: a  InitAlternative: reference to instance of struct arpk with body
    972   ... with parameters
    973     array of char with dimension of Generated Cast of:
    974       Variable Expression: enu7: const instance of enum __anonymous0 with body
    975       ... with resolved type:
    976         const instance of enum __anonymous0 with body
    977     ... to:
    978       unsigned int
    979     ... with resolved type:
    980       unsigned int
    981     float
    982     float
    983     float
    984 
    985 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    986   Name: a  InitAlternative: reference to instance of struct arpk with body
    987   ... with parameters
    988     array of char with dimension of Generated Cast of:
    989       Variable Expression: enu7: const instance of enum __anonymous0 with body
    990       ... with resolved type:
    991         const instance of enum __anonymous0 with body
    992     ... to:
    993       unsigned int
    994     ... with resolved type:
    995       unsigned int
    996     float
    997     float
    998     float
    999 
    1000 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1001   Name: a  InitAlternative: reference to instance of struct arpk with body
    1002   ... with parameters
    1003     instance of type dim7 (not function type)
    1004     float
    1005     float
    1006     float
    1007 
    1008 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1009   Name: a  InitAlternative: reference to instance of struct arpk with body
    1010   ... with parameters
    1011     instance of type dim7 (not function type)
    1012     float
    1013     float
    1014     float
    1015 
    1016 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1017   Name: a  InitAlternative: reference to instance of struct arpk with body
    1018   ... with parameters
    1019     instance of type dim7 (not function type)
    1020     float
    1021     float
    1022     float
    1023 
    1024 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1025   Name: a  InitAlternative: reference to instance of struct arpk with body
    1026   ... with parameters
    1027     instance of type dim7 (not function type)
    1028     float
    1029     float
    1030     float
    1031 
    1032 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1033   Name: a  InitAlternative: reference to instance of struct arpk with body
    1034   ... with parameters
    1035     instance of type dim7 (not function type)
    1036     float
    1037     float
    1038     float
    1039 
    1040 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1041   Name: a  InitAlternative: reference to instance of struct arpk with body
    1042   ... with parameters
    1043     variable length array of char with dimension of Generated Cast of:
    1044       Variable Expression: _array_dim52: const unsigned int
    1045       ... with resolved type:
    1046         const unsigned int
    1047     ... to:
    1048       unsigned int
    1049     ... with resolved type:
    1050       unsigned int
    1051     float
    1052     float
    1053     float
    1054 
    1055 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1056   Name: a  InitAlternative: reference to instance of struct arpk with body
    1057   ... with parameters
    1058     variable length array of char with dimension of Generated Cast of:
    1059       Variable Expression: _array_dim54: const unsigned int
    1060       ... with resolved type:
    1061         const unsigned int
    1062     ... to:
    1063       unsigned int
    1064     ... with resolved type:
    1065       unsigned int
    1066     float
    1067     float
    1068     float
    1069 
    1070 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1071   Name: a  InitAlternative: reference to instance of struct arpk with body
    1072   ... with parameters
    1073     variable length array of char with dimension of Generated Cast of:
    1074       Variable Expression: _array_dim55: const unsigned int
    1075       ... with resolved type:
    1076         const unsigned int
    1077     ... to:
    1078       unsigned int
    1079     ... with resolved type:
    1080       unsigned int
    1081     float
    1082     float
    1083     float
    1084 
    1085 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1086   Name: a  InitAlternative: reference to instance of struct arpk with body
    1087   ... with parameters
    1088     variable length array of char with dimension of Generated Cast of:
    1089       Variable Expression: _array_dim56: const unsigned int
    1090       ... with resolved type:
    1091         const unsigned int
    1092     ... to:
    1093       unsigned int
    1094     ... with resolved type:
    1095       unsigned int
    1096     float
    1097     float
    1098     float
    1099 
    1100 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1101   Name: a  InitAlternative: reference to instance of struct arpk with body
    1102   ... with parameters
    1103     variable length array of char with dimension of Generated Cast of:
    1104       Variable Expression: _array_dim57: const unsigned int
    1105       ... with resolved type:
    1106         const unsigned int
    1107     ... to:
    1108       unsigned int
    1109     ... with resolved type:
    1110       unsigned int
    1111     float
    1112     float
    1113     float
    1114 
    1115 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1116   Name: a  InitAlternative: reference to instance of struct arpk with body
    1117   ... with parameters
    1118     variable length array of char with dimension of Generated Cast of:
    1119       Variable Expression: _array_dim59: const unsigned int
    1120       ... with resolved type:
    1121         const unsigned int
    1122     ... to:
    1123       unsigned int
    1124     ... with resolved type:
    1125       unsigned int
    1126     float
    1127     float
    1128     float
    1129 
    1130 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1131   Name: a  InitAlternative: reference to instance of struct arpk with body
    1132   ... with parameters
    1133     variable length array of char with dimension of Generated Cast of:
    1134       Variable Expression: cpr7: const signed int
    1135       ... with resolved type:
    1136         const signed int
    1137     ... to:
    1138       unsigned int
    1139     ... with resolved type:
    1140       unsigned int
    1141     float
    1142     float
    1143     float
    1144 
    1145 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1146   Name: a  InitAlternative: reference to instance of struct arpk with body
    1147   ... with parameters
    1148     variable length array of char with dimension of Generated Cast of:
    1149       Variable Expression: cpr7: const signed int
    1150       ... with resolved type:
    1151         const signed int
    1152     ... to:
    1153       unsigned int
    1154     ... with resolved type:
    1155       unsigned int
    1156     float
    1157     float
    1158     float
    1159 
    1160 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1161   Name: a  InitAlternative: reference to instance of struct arpk with body
    1162   ... with parameters
    1163     variable length array of char with dimension of Generated Cast of:
    1164       Variable Expression: cpr7: const signed int
    1165       ... with resolved type:
    1166         const signed int
    1167     ... to:
    1168       unsigned int
    1169     ... with resolved type:
    1170       unsigned int
    1171     float
    1172     float
    1173     float
    1174 
    1175 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1176   Name: a  InitAlternative: reference to instance of struct arpk with body
    1177   ... with parameters
    1178     variable length array of char with dimension of Generated Cast of:
    1179       Variable Expression: cpr7: const signed int
    1180       ... with resolved type:
    1181         const signed int
    1182     ... to:
    1183       unsigned int
    1184     ... with resolved type:
    1185       unsigned int
    1186     float
    1187     float
    1188     float
    1189 
    1190 array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
    1191   Name: a  InitAlternative: reference to instance of struct arpk with body
    1192   ... with parameters
    1193     variable length array of char with dimension of Generated Cast of:
    1194       Variable Expression: cpr7: const signed int
    1195       ... with resolved type:
    1196         const signed int
    1197     ... to:
    1198       unsigned int
    1199     ... with resolved type:
    1200       unsigned int
    1201     float
    1202     float
    1203     float
    1204 
    1205 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1206   Name: ?=?
    1207 ...to:
    1208   Address of:
    1209     Name: b
    1210   Address of:
    1211     Name: a
    1212 
    1213 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1214   Name: ?=?
    1215 ...to:
    1216   Address of:
    1217     Name: b
    1218   Address of:
    1219     Name: a
    1220 
    1221 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1222   Name: ?=?
    1223 ...to:
    1224   Address of:
    1225     Name: b
    1226   Address of:
    1227     Name: a
    1228 
    1229 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1230   Name: ?=?
    1231 ...to:
    1232   Address of:
    1233     Name: b
    1234   Address of:
    1235     Name: a
    1236 
    1237 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1238   Name: ?=?
    1239 ...to:
    1240   Address of:
    1241     Name: b
    1242   Address of:
    1243     Name: a
    1244 
    1245 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1246   Name: ?=?
    1247 ...to:
    1248   Address of:
    1249     Name: b
    1250   Address of:
    1251     Name: a
    1252 
    1253 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1254   Name: ?=?
    1255 ...to:
    1256   Address of:
    1257     Name: b
    1258   Address of:
    1259     Name: a
    1260 
    1261 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1262   Name: ?=?
    1263 ...to:
    1264   Address of:
    1265     Name: b
    1266   Address of:
    1267     Name: a
    1268 
    1269 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1270   Name: ?=?
    1271 ...to:
    1272   Address of:
    1273     Name: b
    1274   Address of:
    1275     Name: a
    1276 
    1277 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1278   Name: ?=?
    1279 ...to:
    1280   Address of:
    1281     Name: b
    1282   Address of:
    1283     Name: a
    1284 
    1285 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1286   Name: ?=?
    1287 ...to:
    1288   Address of:
    1289     Name: b
    1290   Address of:
    1291     Name: a
    1292 
    1293 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1294   Name: ?=?
    1295 ...to:
    1296   Address of:
    1297     Name: b
    1298   Address of:
    1299     Name: a
    1300 
    1301 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1302   Name: ?=?
    1303 ...to:
    1304   Address of:
    1305     Name: b
    1306   Address of:
    1307     Name: a
    1308 
    1309 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1310   Name: ?=?
    1311 ...to:
    1312   Address of:
    1313     Name: b
    1314   Address of:
    1315     Name: a
    1316 
    1317 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1318   Name: ?=?
    1319 ...to:
    1320   Address of:
    1321     Name: b
    1322   Address of:
    1323     Name: a
    1324 
    1325 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1326   Name: ?=?
    1327 ...to:
    1328   Address of:
    1329     Name: b
    1330   Address of:
    1331     Name: a
    1332 
    1333 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1334   Name: ?=?
    1335 ...to:
    1336   Address of:
    1337     Name: b
    1338   Address of:
    1339     Name: a
    1340 
    1341 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1342   Name: ?=?
    1343 ...to:
    1344   Address of:
    1345     Name: b
    1346   Address of:
    1347     Name: a
    1348 
    1349 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1350   Name: ?=?
    1351 ...to:
    1352   Address of:
    1353     Name: b
    1354   Address of:
    1355     Name: a
    1356 
    1357 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1358   Name: ?=?
    1359 ...to:
    1360   Address of:
    1361     Name: b
    1362   Address of:
    1363     Name: a
    1364 
    1365 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1366   Name: ?=?
    1367 ...to:
    1368   Address of:
    1369     Name: b
    1370   Address of:
    1371     Name: a
    1372 
    1373 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1374   Name: ?=?
    1375 ...to:
    1376   Address of:
    1377     Name: b
    1378   Address of:
    1379     Name: a
    1380 
    1381 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1382   Name: ?=?
    1383 ...to:
    1384   Address of:
    1385     Name: b
    1386   Address of:
    1387     Name: a
    1388 
    1389 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1390   Name: ?=?
    1391 ...to:
    1392   Address of:
    1393     Name: b
    1394   Address of:
    1395     Name: a
    1396 
    1397 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1398   Name: ?=?
    1399 ...to:
    1400   Address of:
    1401     Name: b
    1402   Address of:
    1403     Name: a
    1404 
    1405 array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1406   Name: ?=?
    1407 ...to:
    1408   Address of:
    1409     Name: b
    1410   Address of:
    1411     Name: a
    1412 
    1413 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1414   Name: zip
    1415 ...to:
    1416   Name: a
    1417   Name: b
    1418 
    1419 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1420   Name: zip
    1421 ...to:
    1422   Name: a
    1423   Name: b
    1424 
    1425 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1426   Name: zip
    1427 ...to:
    1428   Name: a
    1429   Name: b
    1430 
    1431 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1432   Name: zip
    1433 ...to:
    1434   Name: a
    1435   Name: b
    1436 
    1437 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1438   Name: zip
    1439 ...to:
    1440   Name: a
    1441   Name: b
    1442 
    1443 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1444   Name: zip
    1445 ...to:
    1446   Name: a
    1447   Name: b
    1448 
    1449 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1450   Name: zip
    1451 ...to:
    1452   Name: a
    1453   Name: b
    1454 
    1455 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1456   Name: zip
    1457 ...to:
    1458   Name: a
    1459   Name: b
    1460 
    1461 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1462   Name: zip
    1463 ...to:
    1464   Name: a
    1465   Name: b
    1466 
    1467 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1468   Name: zip
    1469 ...to:
    1470   Name: a
    1471   Name: b
    1472 
    1473 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1474   Name: zip
    1475 ...to:
    1476   Name: a
    1477   Name: b
    1478 
    1479 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1480   Name: zip
    1481 ...to:
    1482   Name: a
    1483   Name: b
    1484 
    1485 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1486   Name: zip
    1487 ...to:
    1488   Name: a
    1489   Name: b
    1490 
    1491 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1492   Name: zip
    1493 ...to:
    1494   Name: a
    1495   Name: b
    1496 
    1497 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1498   Name: zip
    1499 ...to:
    1500   Name: a
    1501   Name: b
    1502 
    1503 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1504   Name: zip
    1505 ...to:
    1506   Name: a
    1507   Name: b
    1508 
    1509 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1510   Name: zip
    1511 ...to:
    1512   Name: a
    1513   Name: b
    1514 
    1515 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1516   Name: zip
    1517 ...to:
    1518   Name: a
    1519   Name: b
    1520 
    1521 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1522   Name: zip
    1523 ...to:
    1524   Name: a
    1525   Name: b
    1526 
    1527 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1528   Name: zip
    1529 ...to:
    1530   Name: a
    1531   Name: b
    1532 
    1533 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1534   Name: zip
    1535 ...to:
    1536   Name: a
    1537   Name: b
    1538 
    1539 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1540   Name: zip
    1541 ...to:
    1542   Name: a
    1543   Name: b
    1544 
    1545 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1546   Name: zip
    1547 ...to:
    1548   Name: a
    1549   Name: b
    1550 
    1551 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1552   Name: zip
    1553 ...to:
    1554   Name: a
    1555   Name: b
    1556 
    1557 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1558   Name: zip
    1559 ...to:
    1560   Name: a
    1561   Name: b
    1562 
    1563 array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
    1564   Name: zip
    1565 ...to:
    1566   Name: a
    1567   Name: b
    1568 
     719array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     720  Name: a  InitAlternative: reference to instance of struct arpk with body
     721  ... with parameters
     722    variable length array of char with dimension of Generated Cast of:
     723      Variable Expression: mut7: signed int
     724      ... with resolved type:
     725        signed int
     726    ... to:
     727      unsigned int
     728    ... with resolved type:
     729      unsigned int
     730    float
     731    float
     732    float
     733
     734array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     735  Name: a  InitAlternative: reference to instance of struct arpk with body
     736  ... with parameters
     737    variable length array of char with dimension of Generated Cast of:
     738      Variable Expression: mut7: signed int
     739      ... with resolved type:
     740        signed int
     741    ... to:
     742      unsigned int
     743    ... with resolved type:
     744      unsigned int
     745    float
     746    float
     747    float
     748
     749array-container/dimexpr-match-cfa.cfa:93:1 error: Invalid application of existing declaration(s) in expression Untyped Init Expression
     750  Name: a  InitAlternative: reference to instance of struct arpk with body
     751  ... with parameters
     752    variable length array of char with dimension of Generated Cast of:
     753      Variable Expression: mut7: signed int
     754      ... with resolved type:
     755        signed int
     756    ... to:
     757      unsigned int
     758    ... with resolved type:
     759      unsigned int
     760    float
     761    float
     762    float
     763
     764array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     765  Name: ?=?
     766...to:
     767  Address of:
     768    Name: b
     769  Address of:
     770    Name: a
     771
     772array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     773  Name: ?=?
     774...to:
     775  Address of:
     776    Name: b
     777  Address of:
     778    Name: a
     779
     780array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     781  Name: ?=?
     782...to:
     783  Address of:
     784    Name: b
     785  Address of:
     786    Name: a
     787
     788array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     789  Name: ?=?
     790...to:
     791  Address of:
     792    Name: b
     793  Address of:
     794    Name: a
     795
     796array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     797  Name: ?=?
     798...to:
     799  Address of:
     800    Name: b
     801  Address of:
     802    Name: a
     803
     804array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     805  Name: ?=?
     806...to:
     807  Address of:
     808    Name: b
     809  Address of:
     810    Name: a
     811
     812array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     813  Name: ?=?
     814...to:
     815  Address of:
     816    Name: b
     817  Address of:
     818    Name: a
     819
     820array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     821  Name: ?=?
     822...to:
     823  Address of:
     824    Name: b
     825  Address of:
     826    Name: a
     827
     828array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     829  Name: ?=?
     830...to:
     831  Address of:
     832    Name: b
     833  Address of:
     834    Name: a
     835
     836array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     837  Name: ?=?
     838...to:
     839  Address of:
     840    Name: b
     841  Address of:
     842    Name: a
     843
     844array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     845  Name: ?=?
     846...to:
     847  Address of:
     848    Name: b
     849  Address of:
     850    Name: a
     851
     852array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     853  Name: ?=?
     854...to:
     855  Address of:
     856    Name: b
     857  Address of:
     858    Name: a
     859
     860array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     861  Name: ?=?
     862...to:
     863  Address of:
     864    Name: b
     865  Address of:
     866    Name: a
     867
     868array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     869  Name: ?=?
     870...to:
     871  Address of:
     872    Name: b
     873  Address of:
     874    Name: a
     875
     876array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     877  Name: ?=?
     878...to:
     879  Address of:
     880    Name: b
     881  Address of:
     882    Name: a
     883
     884array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     885  Name: ?=?
     886...to:
     887  Address of:
     888    Name: b
     889  Address of:
     890    Name: a
     891
     892array-container/dimexpr-match-cfa.cfa:102:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     893  Name: ?=?
     894...to:
     895  Address of:
     896    Name: b
     897  Address of:
     898    Name: a
     899
     900array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     901  Name: zip
     902...to:
     903  Name: a
     904  Name: b
     905
     906array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     907  Name: zip
     908...to:
     909  Name: a
     910  Name: b
     911
     912array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     913  Name: zip
     914...to:
     915  Name: a
     916  Name: b
     917
     918array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     919  Name: zip
     920...to:
     921  Name: a
     922  Name: b
     923
     924array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     925  Name: zip
     926...to:
     927  Name: a
     928  Name: b
     929
     930array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     931  Name: zip
     932...to:
     933  Name: a
     934  Name: b
     935
     936array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     937  Name: zip
     938...to:
     939  Name: a
     940  Name: b
     941
     942array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     943  Name: zip
     944...to:
     945  Name: a
     946  Name: b
     947
     948array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     949  Name: zip
     950...to:
     951  Name: a
     952  Name: b
     953
     954array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     955  Name: zip
     956...to:
     957  Name: a
     958  Name: b
     959
     960array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     961  Name: zip
     962...to:
     963  Name: a
     964  Name: b
     965
     966array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     967  Name: zip
     968...to:
     969  Name: a
     970  Name: b
     971
     972array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     973  Name: zip
     974...to:
     975  Name: a
     976  Name: b
     977
     978array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     979  Name: zip
     980...to:
     981  Name: a
     982  Name: b
     983
     984array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     985  Name: zip
     986...to:
     987  Name: a
     988  Name: b
     989
     990array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     991  Name: zip
     992...to:
     993  Name: a
     994  Name: b
     995
     996array-container/dimexpr-match-cfa.cfa:115:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
     997  Name: zip
     998...to:
     999  Name: a
     1000  Name: b
     1001
  • tests/array-container/.expect/dimexpr-match-cfa.txt

    r6065281f r3bf9d10  
    11---- PTRPARM_CALL:   { void f( typeof( mkar_( ((tag(float)){}) , ((tag(__L__)){}) ) ) * x ) {} typeof( mkar_( ((tag(float)){}) , ((tag(__R__)){}) ) ) a; f( & a ); }
    22done STA EQ STA, L=7, R=7
    3 skip STA NE STA, L=7, R=42
    4 done STA EQ STA, L=7, R=enu7
    5 skip STA NE STA, L=7, R=enu42
    6 skip STA NE DYN, L=7, R=cpr42
    7 skip STA NE UNS, L=7, R=mut42
    8 done STA EQ STA, L=enu7, R=enu7
    9 skip STA NE STA, L=enu7, R=enu42
    10 done STA EQ STA, L=enu7, R=7
    11 skip STA NE STA, L=enu7, R=42
    12 skip STA NE DYN, L=enu7, R=cpr42
    13 skip STA NE UNS, L=enu7, R=mut42
    14 done DYN EQ DYN, L=cpr7, R=cpr7
    15 skip DYN NE DYN, L=cpr7, R=cpr42
    16 skip DYN NE STA, L=cpr7, R=42
    17 skip DYN NE STA, L=cpr7, R=enu42
    18 skip DYN NE UNS, L=cpr7, R=mut42
    19 skip UNS EQ UNS, L=mut7, R=mut7
    20 skip UNS NE UNS, L=mut7, R=mut42
    21 skip UNS NE STA, L=mut7, R=42
    22 skip UNS NE STA, L=mut7, R=enu42
    23 skip UNS NE DYN, L=mut7, R=cpr42
    24 skip STA NE DYN, L=7, R=dim42
    25 skip STA NE DYN, L=enu7, R=dim42
    26 skip DYN NE DYN, L=cpr7, R=dim42
    27 done DYN EQ DYN, L=dim7, R=dim7
    28 skip DYN NE DYN, L=dim7, R=dim42
    29 skip DYN NE STA, L=dim7, R=42
    30 skip DYN NE STA, L=dim7, R=enu42
    31 skip DYN NE DYN, L=dim7, R=cpr42
    32 skip DYN NE UNS, L=dim7, R=mut42
    33 skip UNS NE DYN, L=mut7, R=dim42
     3done STA NE STA, L=7, R=42
     4done STA EQ STA, L=7, R=enu7
     5done STA NE STA, L=7, R=enu42
     6skip STA NE DYN, L=7, R=cpr42
     7skip STA NE UNS, L=7, R=mut42
     8done STA EQ STA, L=enu7, R=enu7
     9done STA NE STA, L=enu7, R=enu42
     10done STA EQ STA, L=enu7, R=7
     11done STA NE STA, L=enu7, R=42
     12skip STA NE DYN, L=enu7, R=cpr42
     13skip STA NE UNS, L=enu7, R=mut42
     14done DYN EQ DYN, L=cpr7, R=cpr7
     15done DYN NE DYN, L=cpr7, R=cpr42
     16skip DYN NE STA, L=cpr7, R=42
     17skip DYN NE STA, L=cpr7, R=enu42
     18done DYN NE UNS, L=cpr7, R=mut42
     19done UNS EQ UNS, L=mut7, R=mut7
     20done UNS NE UNS, L=mut7, R=mut42
     21skip UNS NE STA, L=mut7, R=42
     22skip UNS NE STA, L=mut7, R=enu42
     23done UNS NE DYN, L=mut7, R=cpr42
     24skip STA NE XXX, L=7, R=dim42
     25skip STA NE XXX, L=enu7, R=dim42
     26skip DYN NE XXX, L=cpr7, R=dim42
     27done XXX EQ XXX, L=dim7, R=dim7
     28skip XXX NE XXX, L=dim7, R=dim42
     29skip XXX NE STA, L=dim7, R=42
     30skip XXX NE STA, L=dim7, R=enu42
     31skip XXX NE DYN, L=dim7, R=cpr42
     32skip XXX NE UNS, L=dim7, R=mut42
     33skip UNS NE XXX, L=mut7, R=dim42
    3434---- PTRVAR_INIT:   { typeof( mkar_( ((tag(float)){}) , ((tag(__R__)){}) ) ) a; typeof( mkar_( ((tag(float)){}) , ((tag(__L__)){}) ) ) * b = & a; }
    3535done STA EQ STA, L=7, R=7
    36 skip STA NE STA, L=7, R=42
    37 done STA EQ STA, L=7, R=enu7
    38 skip STA NE STA, L=7, R=enu42
    39 skip STA NE DYN, L=7, R=cpr42
    40 skip STA NE UNS, L=7, R=mut42
    41 done STA EQ STA, L=enu7, R=enu7
    42 skip STA NE STA, L=enu7, R=enu42
    43 done STA EQ STA, L=enu7, R=7
    44 skip STA NE STA, L=enu7, R=42
    45 skip STA NE DYN, L=enu7, R=cpr42
    46 skip STA NE UNS, L=enu7, R=mut42
    47 done DYN EQ DYN, L=cpr7, R=cpr7
    48 skip DYN NE DYN, L=cpr7, R=cpr42
    49 skip DYN NE STA, L=cpr7, R=42
    50 skip DYN NE STA, L=cpr7, R=enu42
    51 skip DYN NE UNS, L=cpr7, R=mut42
    52 skip UNS EQ UNS, L=mut7, R=mut7
    53 skip UNS NE UNS, L=mut7, R=mut42
    54 skip UNS NE STA, L=mut7, R=42
    55 skip UNS NE STA, L=mut7, R=enu42
    56 skip UNS NE DYN, L=mut7, R=cpr42
    57 skip STA NE DYN, L=7, R=dim42
    58 skip STA NE DYN, L=enu7, R=dim42
    59 skip DYN NE DYN, L=cpr7, R=dim42
    60 done DYN EQ DYN, L=dim7, R=dim7
    61 skip DYN NE DYN, L=dim7, R=dim42
    62 skip DYN NE STA, L=dim7, R=42
    63 skip DYN NE STA, L=dim7, R=enu42
    64 skip DYN NE DYN, L=dim7, R=cpr42
    65 skip DYN NE UNS, L=dim7, R=mut42
    66 skip UNS NE DYN, L=mut7, R=dim42
     36done STA NE STA, L=7, R=42
     37done STA EQ STA, L=7, R=enu7
     38done STA NE STA, L=7, R=enu42
     39skip STA NE DYN, L=7, R=cpr42
     40skip STA NE UNS, L=7, R=mut42
     41done STA EQ STA, L=enu7, R=enu7
     42done STA NE STA, L=enu7, R=enu42
     43done STA EQ STA, L=enu7, R=7
     44done STA NE STA, L=enu7, R=42
     45skip STA NE DYN, L=enu7, R=cpr42
     46skip STA NE UNS, L=enu7, R=mut42
     47done DYN EQ DYN, L=cpr7, R=cpr7
     48done DYN NE DYN, L=cpr7, R=cpr42
     49skip DYN NE STA, L=cpr7, R=42
     50skip DYN NE STA, L=cpr7, R=enu42
     51done DYN NE UNS, L=cpr7, R=mut42
     52done UNS EQ UNS, L=mut7, R=mut7
     53done UNS NE UNS, L=mut7, R=mut42
     54skip UNS NE STA, L=mut7, R=42
     55skip UNS NE STA, L=mut7, R=enu42
     56done UNS NE DYN, L=mut7, R=cpr42
     57skip STA NE XXX, L=7, R=dim42
     58skip STA NE XXX, L=enu7, R=dim42
     59skip DYN NE XXX, L=cpr7, R=dim42
     60done XXX EQ XXX, L=dim7, R=dim7
     61skip XXX NE XXX, L=dim7, R=dim42
     62skip XXX NE STA, L=dim7, R=42
     63skip XXX NE STA, L=dim7, R=enu42
     64skip XXX NE DYN, L=dim7, R=cpr42
     65skip XXX NE UNS, L=dim7, R=mut42
     66skip UNS NE XXX, L=mut7, R=dim42
    6767---- PTRVAR_ASGN:   { typeof( mkar_( ((tag(float)){}) , ((tag(__R__)){}) ) ) a; typeof( mkar_( ((tag(float)){}) , ((tag(__L__)){}) ) ) * b = 0p; b = & a; }
    6868done STA EQ STA, L=7, R=7
    69 skip STA NE STA, L=7, R=42
    70 done STA EQ STA, L=7, R=enu7
    71 skip STA NE STA, L=7, R=enu42
    72 skip STA NE DYN, L=7, R=cpr42
    73 skip STA NE UNS, L=7, R=mut42
    74 done STA EQ STA, L=enu7, R=enu7
    75 skip STA NE STA, L=enu7, R=enu42
    76 done STA EQ STA, L=enu7, R=7
    77 skip STA NE STA, L=enu7, R=42
    78 skip STA NE DYN, L=enu7, R=cpr42
    79 skip STA NE UNS, L=enu7, R=mut42
    80 done DYN EQ DYN, L=cpr7, R=cpr7
    81 skip DYN NE DYN, L=cpr7, R=cpr42
    82 skip DYN NE STA, L=cpr7, R=42
    83 skip DYN NE STA, L=cpr7, R=enu42
    84 skip DYN NE UNS, L=cpr7, R=mut42
    85 skip UNS EQ UNS, L=mut7, R=mut7
    86 skip UNS NE UNS, L=mut7, R=mut42
    87 skip UNS NE STA, L=mut7, R=42
    88 skip UNS NE STA, L=mut7, R=enu42
    89 skip UNS NE DYN, L=mut7, R=cpr42
    90 skip STA NE DYN, L=7, R=dim42
    91 skip STA NE DYN, L=enu7, R=dim42
    92 skip DYN NE DYN, L=cpr7, R=dim42
    93 done DYN EQ DYN, L=dim7, R=dim7
    94 skip DYN NE DYN, L=dim7, R=dim42
    95 skip DYN NE STA, L=dim7, R=42
    96 skip DYN NE STA, L=dim7, R=enu42
    97 skip DYN NE DYN, L=dim7, R=cpr42
    98 skip DYN NE UNS, L=dim7, R=mut42
    99 skip UNS NE DYN, L=mut7, R=dim42
     69done STA NE STA, L=7, R=42
     70done STA EQ STA, L=7, R=enu7
     71done STA NE STA, L=7, R=enu42
     72skip STA NE DYN, L=7, R=cpr42
     73skip STA NE UNS, L=7, R=mut42
     74done STA EQ STA, L=enu7, R=enu7
     75done STA NE STA, L=enu7, R=enu42
     76done STA EQ STA, L=enu7, R=7
     77done STA NE STA, L=enu7, R=42
     78skip STA NE DYN, L=enu7, R=cpr42
     79skip STA NE UNS, L=enu7, R=mut42
     80done DYN EQ DYN, L=cpr7, R=cpr7
     81done DYN NE DYN, L=cpr7, R=cpr42
     82skip DYN NE STA, L=cpr7, R=42
     83skip DYN NE STA, L=cpr7, R=enu42
     84done DYN NE UNS, L=cpr7, R=mut42
     85done UNS EQ UNS, L=mut7, R=mut7
     86done UNS NE UNS, L=mut7, R=mut42
     87skip UNS NE STA, L=mut7, R=42
     88skip UNS NE STA, L=mut7, R=enu42
     89done UNS NE DYN, L=mut7, R=cpr42
     90skip STA NE XXX, L=7, R=dim42
     91skip STA NE XXX, L=enu7, R=dim42
     92skip DYN NE XXX, L=cpr7, R=dim42
     93done XXX EQ XXX, L=dim7, R=dim7
     94skip XXX NE XXX, L=dim7, R=dim42
     95skip XXX NE STA, L=dim7, R=42
     96skip XXX NE STA, L=dim7, R=enu42
     97skip XXX NE DYN, L=dim7, R=cpr42
     98skip XXX NE UNS, L=dim7, R=mut42
     99skip UNS NE XXX, L=mut7, R=dim42
    100100---- REFPARM_CALL:   { void f( typeof( mkar_( ((tag(float)){}) , ((tag(__L__)){}) ) ) & x ) {} typeof( mkar_( ((tag(float)){}) , ((tag(__R__)){}) ) ) a; f( a ); }
    101101done STA EQ STA, L=7, R=7
    102 skip STA NE STA, L=7, R=42
    103 done STA EQ STA, L=7, R=enu7
    104 skip STA NE STA, L=7, R=enu42
    105 skip STA NE DYN, L=7, R=cpr42
    106 skip STA NE UNS, L=7, R=mut42
    107 done STA EQ STA, L=enu7, R=enu7
    108 skip STA NE STA, L=enu7, R=enu42
    109 done STA EQ STA, L=enu7, R=7
    110 skip STA NE STA, L=enu7, R=42
    111 skip STA NE DYN, L=enu7, R=cpr42
    112 skip STA NE UNS, L=enu7, R=mut42
    113 done DYN EQ DYN, L=cpr7, R=cpr7
    114 skip DYN NE DYN, L=cpr7, R=cpr42
    115 skip DYN NE STA, L=cpr7, R=42
    116 skip DYN NE STA, L=cpr7, R=enu42
    117 skip DYN NE UNS, L=cpr7, R=mut42
    118 skip UNS EQ UNS, L=mut7, R=mut7
    119 skip UNS NE UNS, L=mut7, R=mut42
    120 skip UNS NE STA, L=mut7, R=42
    121 skip UNS NE STA, L=mut7, R=enu42
    122 skip UNS NE DYN, L=mut7, R=cpr42
    123 skip STA NE DYN, L=7, R=dim42
    124 skip STA NE DYN, L=enu7, R=dim42
    125 skip DYN NE DYN, L=cpr7, R=dim42
    126 done DYN EQ DYN, L=dim7, R=dim7
    127 skip DYN NE DYN, L=dim7, R=dim42
    128 skip DYN NE STA, L=dim7, R=42
    129 skip DYN NE STA, L=dim7, R=enu42
    130 skip DYN NE DYN, L=dim7, R=cpr42
    131 skip DYN NE UNS, L=dim7, R=mut42
    132 skip UNS NE DYN, L=mut7, R=dim42
     102done STA NE STA, L=7, R=42
     103done STA EQ STA, L=7, R=enu7
     104done STA NE STA, L=7, R=enu42
     105skip STA NE DYN, L=7, R=cpr42
     106skip STA NE UNS, L=7, R=mut42
     107done STA EQ STA, L=enu7, R=enu7
     108done STA NE STA, L=enu7, R=enu42
     109done STA EQ STA, L=enu7, R=7
     110done STA NE STA, L=enu7, R=42
     111skip STA NE DYN, L=enu7, R=cpr42
     112skip STA NE UNS, L=enu7, R=mut42
     113done DYN EQ DYN, L=cpr7, R=cpr7
     114done DYN NE DYN, L=cpr7, R=cpr42
     115skip DYN NE STA, L=cpr7, R=42
     116skip DYN NE STA, L=cpr7, R=enu42
     117done DYN NE UNS, L=cpr7, R=mut42
     118done UNS EQ UNS, L=mut7, R=mut7
     119done UNS NE UNS, L=mut7, R=mut42
     120skip UNS NE STA, L=mut7, R=42
     121skip UNS NE STA, L=mut7, R=enu42
     122done UNS NE DYN, L=mut7, R=cpr42
     123skip STA NE XXX, L=7, R=dim42
     124skip STA NE XXX, L=enu7, R=dim42
     125skip DYN NE XXX, L=cpr7, R=dim42
     126done XXX EQ XXX, L=dim7, R=dim7
     127skip XXX NE XXX, L=dim7, R=dim42
     128skip XXX NE STA, L=dim7, R=42
     129skip XXX NE STA, L=dim7, R=enu42
     130skip XXX NE DYN, L=dim7, R=cpr42
     131skip XXX NE UNS, L=dim7, R=mut42
     132skip UNS NE XXX, L=mut7, R=dim42
    133133---- REFVAR_INIT:   { typeof( mkar_( ((tag(float)){}) , ((tag(__R__)){}) ) ) a; typeof( mkar_( ((tag(float)){}) , ((tag(__L__)){}) ) ) & b = a; }
    134134done STA EQ STA, L=7, R=7
    135 skip STA NE STA, L=7, R=42
    136 done STA EQ STA, L=7, R=enu7
    137 skip STA NE STA, L=7, R=enu42
    138 skip STA NE DYN, L=7, R=cpr42
    139 skip STA NE UNS, L=7, R=mut42
    140 done STA EQ STA, L=enu7, R=enu7
    141 skip STA NE STA, L=enu7, R=enu42
    142 done STA EQ STA, L=enu7, R=7
    143 skip STA NE STA, L=enu7, R=42
    144 skip STA NE DYN, L=enu7, R=cpr42
    145 skip STA NE UNS, L=enu7, R=mut42
    146 done DYN EQ DYN, L=cpr7, R=cpr7
    147 skip DYN NE DYN, L=cpr7, R=cpr42
    148 skip DYN NE STA, L=cpr7, R=42
    149 skip DYN NE STA, L=cpr7, R=enu42
    150 skip DYN NE UNS, L=cpr7, R=mut42
    151 skip UNS EQ UNS, L=mut7, R=mut7
    152 skip UNS NE UNS, L=mut7, R=mut42
    153 skip UNS NE STA, L=mut7, R=42
    154 skip UNS NE STA, L=mut7, R=enu42
    155 skip UNS NE DYN, L=mut7, R=cpr42
    156 skip STA NE DYN, L=7, R=dim42
    157 skip STA NE DYN, L=enu7, R=dim42
    158 skip DYN NE DYN, L=cpr7, R=dim42
    159 done DYN EQ DYN, L=dim7, R=dim7
    160 skip DYN NE DYN, L=dim7, R=dim42
    161 skip DYN NE STA, L=dim7, R=42
    162 skip DYN NE STA, L=dim7, R=enu42
    163 skip DYN NE DYN, L=dim7, R=cpr42
    164 skip DYN NE UNS, L=dim7, R=mut42
    165 skip UNS NE DYN, L=mut7, R=dim42
     135done STA NE STA, L=7, R=42
     136done STA EQ STA, L=7, R=enu7
     137done STA NE STA, L=7, R=enu42
     138skip STA NE DYN, L=7, R=cpr42
     139skip STA NE UNS, L=7, R=mut42
     140done STA EQ STA, L=enu7, R=enu7
     141done STA NE STA, L=enu7, R=enu42
     142done STA EQ STA, L=enu7, R=7
     143done STA NE STA, L=enu7, R=42
     144skip STA NE DYN, L=enu7, R=cpr42
     145skip STA NE UNS, L=enu7, R=mut42
     146done DYN EQ DYN, L=cpr7, R=cpr7
     147done DYN NE DYN, L=cpr7, R=cpr42
     148skip DYN NE STA, L=cpr7, R=42
     149skip DYN NE STA, L=cpr7, R=enu42
     150done DYN NE UNS, L=cpr7, R=mut42
     151done UNS EQ UNS, L=mut7, R=mut7
     152done UNS NE UNS, L=mut7, R=mut42
     153skip UNS NE STA, L=mut7, R=42
     154skip UNS NE STA, L=mut7, R=enu42
     155done UNS NE DYN, L=mut7, R=cpr42
     156skip STA NE XXX, L=7, R=dim42
     157skip STA NE XXX, L=enu7, R=dim42
     158skip DYN NE XXX, L=cpr7, R=dim42
     159done XXX EQ XXX, L=dim7, R=dim7
     160skip XXX NE XXX, L=dim7, R=dim42
     161skip XXX NE STA, L=dim7, R=42
     162skip XXX NE STA, L=dim7, R=enu42
     163skip XXX NE DYN, L=dim7, R=cpr42
     164skip XXX NE UNS, L=dim7, R=mut42
     165skip UNS NE XXX, L=mut7, R=dim42
    166166---- REFVAR_ASGN:   { typeof( mkar_( ((tag(float)){}) , ((tag(__R__)){}) ) ) a; typeof( mkar_( ((tag(float)){}) , ((tag(__L__)){}) ) ) & b = *0p; & b = & a; }
    167167done STA EQ STA, L=7, R=7
    168 skip STA NE STA, L=7, R=42
    169 done STA EQ STA, L=7, R=enu7
    170 skip STA NE STA, L=7, R=enu42
    171 skip STA NE DYN, L=7, R=cpr42
    172 skip STA NE UNS, L=7, R=mut42
    173 done STA EQ STA, L=enu7, R=enu7
    174 skip STA NE STA, L=enu7, R=enu42
    175 done STA EQ STA, L=enu7, R=7
    176 skip STA NE STA, L=enu7, R=42
    177 skip STA NE DYN, L=enu7, R=cpr42
    178 skip STA NE UNS, L=enu7, R=mut42
    179 done DYN EQ DYN, L=cpr7, R=cpr7
    180 skip DYN NE DYN, L=cpr7, R=cpr42
    181 skip DYN NE STA, L=cpr7, R=42
    182 skip DYN NE STA, L=cpr7, R=enu42
    183 skip DYN NE UNS, L=cpr7, R=mut42
    184 skip UNS EQ UNS, L=mut7, R=mut7
    185 skip UNS NE UNS, L=mut7, R=mut42
    186 skip UNS NE STA, L=mut7, R=42
    187 skip UNS NE STA, L=mut7, R=enu42
    188 skip UNS NE DYN, L=mut7, R=cpr42
    189 skip STA NE DYN, L=7, R=dim42
    190 skip STA NE DYN, L=enu7, R=dim42
    191 skip DYN NE DYN, L=cpr7, R=dim42
    192 done DYN EQ DYN, L=dim7, R=dim7
    193 skip DYN NE DYN, L=dim7, R=dim42
    194 skip DYN NE STA, L=dim7, R=42
    195 skip DYN NE STA, L=dim7, R=enu42
    196 skip DYN NE DYN, L=dim7, R=cpr42
    197 skip DYN NE UNS, L=dim7, R=mut42
    198 skip UNS NE DYN, L=mut7, R=dim42
     168done STA NE STA, L=7, R=42
     169done STA EQ STA, L=7, R=enu7
     170done STA NE STA, L=7, R=enu42
     171skip STA NE DYN, L=7, R=cpr42
     172skip STA NE UNS, L=7, R=mut42
     173done STA EQ STA, L=enu7, R=enu7
     174done STA NE STA, L=enu7, R=enu42
     175done STA EQ STA, L=enu7, R=7
     176done STA NE STA, L=enu7, R=42
     177skip STA NE DYN, L=enu7, R=cpr42
     178skip STA NE UNS, L=enu7, R=mut42
     179done DYN EQ DYN, L=cpr7, R=cpr7
     180done DYN NE DYN, L=cpr7, R=cpr42
     181skip DYN NE STA, L=cpr7, R=42
     182skip DYN NE STA, L=cpr7, R=enu42
     183done DYN NE UNS, L=cpr7, R=mut42
     184done UNS EQ UNS, L=mut7, R=mut7
     185done UNS NE UNS, L=mut7, R=mut42
     186skip UNS NE STA, L=mut7, R=42
     187skip UNS NE STA, L=mut7, R=enu42
     188done UNS NE DYN, L=mut7, R=cpr42
     189skip STA NE XXX, L=7, R=dim42
     190skip STA NE XXX, L=enu7, R=dim42
     191skip DYN NE XXX, L=cpr7, R=dim42
     192done XXX EQ XXX, L=dim7, R=dim7
     193skip XXX NE XXX, L=dim7, R=dim42
     194skip XXX NE STA, L=dim7, R=42
     195skip XXX NE STA, L=dim7, R=enu42
     196skip XXX NE DYN, L=dim7, R=cpr42
     197skip XXX NE UNS, L=dim7, R=mut42
     198skip UNS NE XXX, L=mut7, R=dim42
    199199---- CALLZIP:   { typeof( mkar_( ((tag(float)){}) , ((tag(__L__)){}) ) ) a; typeof( mkar_( ((tag(float)){}) , ((tag(__R__)){}) ) ) b; zip( a, b ); }
    200200done STA EQ STA, L=7, R=7
    201 skip STA NE STA, L=7, R=42
    202 done STA EQ STA, L=7, R=enu7
    203 skip STA NE STA, L=7, R=enu42
    204 skip STA NE DYN, L=7, R=cpr42
    205 skip STA NE UNS, L=7, R=mut42
    206 done STA EQ STA, L=enu7, R=enu7
    207 skip STA NE STA, L=enu7, R=enu42
    208 done STA EQ STA, L=enu7, R=7
    209 skip STA NE STA, L=enu7, R=42
    210 skip STA NE DYN, L=enu7, R=cpr42
    211 skip STA NE UNS, L=enu7, R=mut42
    212 done DYN EQ DYN, L=cpr7, R=cpr7
    213 skip DYN NE DYN, L=cpr7, R=cpr42
    214 skip DYN NE STA, L=cpr7, R=42
    215 skip DYN NE STA, L=cpr7, R=enu42
    216 skip DYN NE UNS, L=cpr7, R=mut42
    217 skip UNS EQ UNS, L=mut7, R=mut7
    218 skip UNS NE UNS, L=mut7, R=mut42
    219 skip UNS NE STA, L=mut7, R=42
    220 skip UNS NE STA, L=mut7, R=enu42
    221 skip UNS NE DYN, L=mut7, R=cpr42
    222 skip STA NE DYN, L=7, R=dim42
    223 skip STA NE DYN, L=enu7, R=dim42
    224 skip DYN NE DYN, L=cpr7, R=dim42
    225 done DYN EQ DYN, L=dim7, R=dim7
    226 skip DYN NE DYN, L=dim7, R=dim42
    227 skip DYN NE STA, L=dim7, R=42
    228 skip DYN NE STA, L=dim7, R=enu42
    229 skip DYN NE DYN, L=dim7, R=cpr42
    230 skip DYN NE UNS, L=dim7, R=mut42
    231 skip UNS NE DYN, L=mut7, R=dim42
     201done STA NE STA, L=7, R=42
     202done STA EQ STA, L=7, R=enu7
     203done STA NE STA, L=7, R=enu42
     204skip STA NE DYN, L=7, R=cpr42
     205skip STA NE UNS, L=7, R=mut42
     206done STA EQ STA, L=enu7, R=enu7
     207done STA NE STA, L=enu7, R=enu42
     208done STA EQ STA, L=enu7, R=7
     209done STA NE STA, L=enu7, R=42
     210skip STA NE DYN, L=enu7, R=cpr42
     211skip STA NE UNS, L=enu7, R=mut42
     212done DYN EQ DYN, L=cpr7, R=cpr7
     213done DYN NE DYN, L=cpr7, R=cpr42
     214skip DYN NE STA, L=cpr7, R=42
     215skip DYN NE STA, L=cpr7, R=enu42
     216done DYN NE UNS, L=cpr7, R=mut42
     217done UNS EQ UNS, L=mut7, R=mut7
     218done UNS NE UNS, L=mut7, R=mut42
     219skip UNS NE STA, L=mut7, R=42
     220skip UNS NE STA, L=mut7, R=enu42
     221done UNS NE DYN, L=mut7, R=cpr42
     222skip STA NE XXX, L=7, R=dim42
     223skip STA NE XXX, L=enu7, R=dim42
     224skip DYN NE XXX, L=cpr7, R=dim42
     225done XXX EQ XXX, L=dim7, R=dim7
     226skip XXX NE XXX, L=dim7, R=dim42
     227skip XXX NE STA, L=dim7, R=42
     228skip XXX NE STA, L=dim7, R=enu42
     229skip XXX NE DYN, L=dim7, R=cpr42
     230skip XXX NE UNS, L=dim7, R=mut42
     231skip UNS NE XXX, L=mut7, R=dim42
  • tests/array-container/dimexpr-match.hfa

    r6065281f r3bf9d10  
    145145#define EXPAND_AND_QUOTE(str) QUOTE(str)
    146146#define TRY_COMPAT_E EXPAND_AND_QUOTE(TRY_COMPAT(__L__,__R__))
     147
     148// Temporary: CFA is classic by default
     149#if defined CFA_IS_PREVIEW && defined CFA_IS_CLASSIC
     150#error Must not define both CFA_IS_CLASSIC, CFA_IS_PREVIEW
     151#endif
     152#if ! defined CFA_IS_PREVIEW && ! defined CFA_IS_CLASSIC
     153#define CFA_IS_CLASSIC
     154#endif
    147155
    148156#if ! defined __cforall
Note: See TracChangeset for help on using the changeset viewer.