Changeset 1dcd52a3 for src/tests


Ignore:
Timestamp:
Feb 9, 2018, 11:59:35 AM (6 years ago)
Author:
Rob Schluntz <rschlunt@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
7a052e34
Parents:
538334a
git-author:
Rob Schluntz <rschlunt@…> (02/09/18 11:44:40)
git-committer:
Rob Schluntz <rschlunt@…> (02/09/18 11:59:35)
Message:

Disregard outermost const, volatile, _Atomic qualifiers on parameters when unifying function types [fixes #48]

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/tests/tuple/tupleVariadic.c

    r538334a r1dcd52a3  
    9595}
    9696
     97forall(ttype T | { void foo(T); }) void bar(T x) {}
     98void foo(int) {}
     99
    97100int main() {
    98101        array * x0 = new();
     
    117120        func(3, 2.0, 111, 4.145);
    118121        printf("finished func\n");
     122
     123        {
     124                // T = [const int] -- this ensures that void(*)(int) satisfies void(*)(const int)
     125                const int x;
     126                bar(x);
     127        }
    119128}
    120129
Note: See TracChangeset for help on using the changeset viewer.