Add an expression to the CORE_Expr test that should be similiar to what we observe in Envelope_3

This commit is contained in:
Andreas Fabri 2023-03-10 10:05:22 +00:00
parent c5e9c9847d
commit 2de196ac3e
1 changed files with 4 additions and 0 deletions

View File

@ -137,6 +137,10 @@ int main() {
CGAL::test_real_embeddable<NT>();
CORE::BigRat br(1,3);
CORE::Expr exp = 2 * br;
return 0;
}