SQL Server bug?

I have managed to create a script that (on my system) reliably generates the following message

Location: pageref.cpp:955
Expression: IS_OFF (BUF_MINLOGGED, m_buf->bstat) || pageModifyType != PageModifyType_Contents || GetPagePtr ()->IsTextPage ()
SPID: 59
Process ID: 5080
Msg 3624, Level 20, State 1, Line 45
A system assertion check has failed. Check the SQL Server error log for details. Typically, an assertion failure is caused by a software bug or data corruption. To check for database corruption, consider running DBCC CHECKDB. If you agreed to send dumps to Microsoft during setup, a mini dump will be sent to Microsoft. An update might be available from Microsoft in the latest Service Pack or in a Hotfix from Technical Support.
Msg 596, Level 21, State 1, Line 32
Cannot continue the execution because the session is in the kill state.
Msg 0, Level 20, State 0, Line 32
A severe error occurred on the current command. The results, if any, should be discarded.

select @@version results
Microsoft SQL Server 2016 (SP2-CU1) (KB4135048) - 13.0.5149.0 (X64) May 19 2018 09:41:57 Copyright (c) Microsoft Corporation Standard Edition (64-bit) on Windows Server 2012 R2 Standard 6.3 (Build 9600: ) (Hypervisor)

So I am pretty sure I am running a fully patched SQL 2016

I think this is closely related to https://support.microsoft.com/en-us/help/3205964 but this should be fixed on the version I am running

If there is anyone else out there running this, could you please try the following and let me know what happens!

(You may need to tune (up) the number of values going into tables ONE and TWO)

SELECT @@VERSION

IF OBJECT_ID('dbo.ONE') IS NOT NULL
BEGIN
DROP TABLE dbo.ONE
END

IF OBJECT_ID('dbo.TWO') IS NOT NULL
BEGIN
DROP TABLE dbo.TWO
END
GO

CREATE TABLE dbo.ONE (
id integer IDENTITY(1,1)
, wibble varchar(50)
)

CREATE TABLE dbo.TWO (
id integer
, wibble varchar(50)
, isactive bit
)
GO

CREATE CLUSTERED COLUMNSTORE INDEX IX_CS_ONE ON ONE
CREATE CLUSTERED COLUMNSTORE INDEX IX_CS_TWO ON TWO
GO

INSERT INTO ONE VALUES ('ONE')
INSERT INTO TWO (ID, WIBBLE, isactive) VALUES (1, 'TWO', 1)
GO

INSERT INTO ONE (WIBBLE)
SELECT 'TESTING'
FROM SYS.OBJECTS AS O1
CROSS JOIN SYS.OBJECTS AS O2

INSERT INTO TWO (ID, WIBBLE, ISACTIVE)
SELECT 2, 'TESTING', 1
FROM SYS.OBJECTS AS O1
CROSS JOIN SYS.OBJECTS AS O2

INSERT INTO TWO (ID, WIBBLE, isactive)
SELECT ID, WIBBLE, 1
FROM (
MERGE TWO WITH (TABLOCK) AS TARGET
USING ONE AS SOURCE
ON TARGET.id = SOURCE.id
WHEN MATCHED
THEN UPDATE SET isactive = 0
OUTPUT
$action AS ACTION
, [SOURCE].*
) AS MERGE_OUTPUT
;

-- it goes bang before here!
SELECT * FROM TWO

Replying to my own issue... this has been confirmed as a bug (on 2017) on another forum, I've also included a workaround in the linked item incase an internet search has lead you here!

https://social.msdn.microsoft.com/Forums/en-US/0e30a316-dcbb-4cb5-bd2c-eb69b4efad67/sql-server-2016-sp2cui-bug-merge-and-insert-with-columnstore-index-creates-crash-dump-script?forum=sqldatabaseengine

And a Microsoft forum post made if you want to upvote it to get attention!