2012-02-17 04:48:57 +00:00
|
|
|
// errorcheck
|
2010-06-10 20:30:39 +00:00
|
|
|
|
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2012-02-19 02:19:43 +00:00
|
|
|
// Verify that illegal character literals are detected.
|
|
|
|
// Does not compile.
|
|
|
|
|
2010-06-10 20:30:39 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
const (
|
|
|
|
// check that surrogate pair elements are invalid
|
|
|
|
// (d800-dbff, dc00-dfff).
|
|
|
|
_ = '\ud7ff' // ok
|
2010-08-31 18:43:52 +00:00
|
|
|
_ = '\ud800' // ERROR "Unicode|unicode"
|
|
|
|
_ = "\U0000D999" // ERROR "Unicode|unicode"
|
|
|
|
_ = '\udc01' // ERROR "Unicode|unicode"
|
|
|
|
_ = '\U0000dddd' // ERROR "Unicode|unicode"
|
|
|
|
_ = '\udfff' // ERROR "Unicode|unicode"
|
2010-06-10 20:30:39 +00:00
|
|
|
_ = '\ue000' // ok
|
|
|
|
_ = '\U0010ffff' // ok
|
2010-08-31 18:43:52 +00:00
|
|
|
_ = '\U00110000' // ERROR "Unicode|unicode"
|
2010-06-10 20:30:39 +00:00
|
|
|
_ = "abc\U0010ffffdef" // ok
|
2010-08-31 18:43:52 +00:00
|
|
|
_ = "abc\U00110000def" // ERROR "Unicode|unicode"
|
|
|
|
_ = '\Uffffffff' // ERROR "Unicode|unicode"
|
2010-06-10 20:30:39 +00:00
|
|
|
)
|
|
|
|
|