Branch data Line data Source code
1 : : /****************************************************************************** 2 : : * Top contributors (to current version): 3 : : * Aina Niemetz, Andrew Reynolds 4 : : * 5 : : * This file is part of the cvc5 project. 6 : : * 7 : : * Copyright (c) 2009-2024 by the authors listed in the file AUTHORS 8 : : * in the top-level source directory and their institutional affiliations. 9 : : * All rights reserved. See the file COPYING in the top-level source 10 : : * directory for licensing information. 11 : : * **************************************************************************** 12 : : * 13 : : * Test for project issue #386. 14 : : */ 15 : : #include <cvc5/cvc5.h> 16 : : 17 : : #include <cassert> 18 : : 19 : : using namespace cvc5; 20 : : 21 : 1 : int main(void) 22 : : { 23 : 2 : TermManager tm; 24 : : 25 : 2 : Sort s1 = tm.getBooleanSort(); 26 : 2 : Sort p1 = tm.mkParamSort("_p1"); 27 : 2 : Sort p2 = tm.mkParamSort("_p2"); 28 : 5 : DatatypeDecl dtdecl = tm.mkDatatypeDecl("_x0", {p1, p2}); 29 : 3 : DatatypeConstructorDecl ctordecl = tm.mkDatatypeConstructorDecl("_x1"); 30 : 1 : ctordecl.addSelector("_x2", p1); 31 : 1 : dtdecl.addConstructor(ctordecl); 32 : 2 : Sort s2 = tm.mkDatatypeSort(dtdecl); 33 : : try 34 : : { 35 [ - - ][ + + ]: 5 : s2.instantiate({s1}); 36 : : } 37 : 1 : catch (CVC5ApiException& e) 38 : : { 39 : 1 : return 0; 40 : : } 41 : 0 : assert(false); 42 : : }