-- With only / at end of line terminates statement in build earlier than v16.0.5-32
-- Answer =1
select 5
   / 5 /
/

-- With only / at end of line terminates statement in build earlier than v16.0.5-32
-- Answer = 5 and incorrect syntax
select
  5 /
  5
/

-- With only / at end of line terminates statement in build earlier than v16.0.5-32
-- Answer = 1 and incorrect syntax
select
5
/
5
/

=============  16.0.9-1  =========================

-- / Statement Separator = Disabled
-- / at end of line terminates statement = Enabled; in build 16.0.9-1
-- Answer = 1
select 5
   / 5 

-- / Statement Separator = Disabled
-- / at end of line terminates statement = Enabled; in build 16.0.9-1
-- Incorrect Syntax
select
  5 /
  5
/

-- / Statement Separator = Disabled
-- / at end of line terminates statement = Enabled; in build 16.0.9-1
-- Incorrect Syntax
select
5
/
5
/

-- / Statement Separator = Disabled
-- / at end of line terminates statement = Enabled; in build 16.0.9-1
-- Answer = 1
select
5 / 5

-- / Statement Separator = Enabled
-- / at end of line terminates statement = Disabled; in build 16.0.9-1
-- Answer = 1
select 5
   / 5 

-- / Statement Separator = Enabled
-- / at end of line terminates statement = Disabled; in build 16.0.9-1
-- Answer = 1
select
  5 /
  5
/

-- / Statement Separator = Enabled
-- / at end of line terminates statement = Disabled; in build 16.0.9-1
-- Answer =5 and Incorrect Syntax
select
5
/
5
/

-- / Statement Separator = Enabled
-- / at end of line terminates statement = Disabled; in build 16.0.9-1
-- Answer = 5 and Syntax Error
select
5 
/
5

-- / Statement Separator = Enabled
-- / at end of line terminates statement = Enabled; in build 16.0.9-1
-- Answer = 1
select 5
   / 5 

-- / Statement Separator = Enabled
-- / at end of line terminates statement = Enabled; in build 16.0.9-1
-- Answer = 5 + Syntax Error
select
  5 /
  5
/

-- / Statement Separator = Enabled
-- / at end of line terminates statement = Enabled; in build 16.0.9-1
-- Answer = 5 and Incorrect Syntax
select
5
/
5
/

-- / Statement Separator = Enabled
-- / at end of line terminates statement = Enabled; in build 16.0.9-1
-- Answer = 5 and Syntax Error
select
5 
/
5