[lang-ref] ( assign_constant ) ( swift )

@Test func assignConstant() {
	// let
	let x = 1
	#expect(x == 1)

	// x = 2      // compile error
	// let x = 2  // compile error
}