mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
10 lines
132 B
Swift
10 lines
132 B
Swift
// RUN: %swift -parse %s -verify -parse-as-library
|
|
|
|
#if FAIL
|
|
class C {}
|
|
|
|
func > (lhs: C, rhs: C) -> Bool {
|
|
return false;
|
|
}
|
|
#endif
|