File: enum_codable_failure_diagnostics.swift

package info (click to toggle)
swiftlang 6.1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,791,532 kB
  • sloc: cpp: 9,901,743; ansic: 2,201,431; asm: 1,091,827; python: 308,252; objc: 82,166; f90: 80,126; lisp: 38,358; pascal: 25,559; sh: 20,429; ml: 5,058; perl: 4,745; makefile: 4,484; awk: 3,535; javascript: 3,018; xml: 918; fortran: 664; cs: 573; ruby: 396
file content (107 lines) | stat: -rw-r--r-- 3,823 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) -typecheck -parse-as-library -swift-version 4 %s -verify

// Codable enum with non-Codable parameter.
enum E1 : Codable {
// expected-error@-1 {{type 'E1' does not conform to protocol 'Decodable'}}
// expected-error@-2 {{type 'E1' does not conform to protocol 'Encodable'}}

  struct Nested {}
  case x(
    a: String = "",
    b: Int = 0,
    c: Nested = Nested())
  // expected-note@-1 {{cannot automatically synthesize 'Decodable' because 'Nested' does not conform to 'Decodable'}}
  // expected-note@-2 {{cannot automatically synthesize 'Encodable' because 'Nested' does not conform to 'Encodable'}}
}

// Codable enum with non-enum CodingKeys.
enum E2 : Codable {
// expected-error@-1 {{type 'E2' does not conform to protocol 'Decodable'}}
// expected-error@-2 {{type 'E2' does not conform to protocol 'Encodable'}}

  case x(
      a: String = "",
      b: Int = 0,
      c: Double?)

  struct CodingKeys : CodingKey {
  // expected-note@-1 {{cannot automatically synthesize 'Decodable' because 'CodingKeys' is not an enum}}
  // expected-note@-2 {{cannot automatically synthesize 'Encodable' because 'CodingKeys' is not an enum}}
    var stringValue: String = ""
    var intValue: Int? = nil
    init?(stringValue: String) {}
    init?(intValue: Int) {}
  }
}

// Codable struct with CodingKeys not conforming to CodingKey.
enum E3 : Codable {
// expected-error@-1 {{type 'E3' does not conform to protocol 'Decodable'}}
// expected-error@-2 {{type 'E3' does not conform to protocol 'Encodable'}}

  case x(
      a: String = "",
      b: Int = 0,
      c: Double?)

  enum XCodingKeys : String {
  // expected-note@-1 {{cannot automatically synthesize 'Decodable' because 'CodingKeys' does not conform to CodingKey}}
  // expected-note@-2 {{cannot automatically synthesize 'Encodable' because 'CodingKeys' does not conform to CodingKey}}
    case a
    case b
    case c
  }
}

// Codable enum with extraneous CodingKeys
enum E4 : Codable {
// expected-error@-1 {{type 'E4' does not conform to protocol 'Decodable'}}
// expected-error@-2 {{type 'E4' does not conform to protocol 'Encodable'}}

  case x(
      a: String = "",
      b: Int = 0,
      c: Double?)

  enum XCodingKeys : String, CodingKey {
    case a
    case a2
    // expected-note@-1 {{CodingKey case 'a2' does not match any stored properties}}
    // expected-note@-2 {{CodingKey case 'a2' does not match any stored properties}}
    case b
    case b2
    // expected-note@-1 {{CodingKey case 'b2' does not match any stored properties}}
    // expected-note@-2 {{CodingKey case 'b2' does not match any stored properties}}
    case c
    case c2
    // expected-note@-1 {{CodingKey case 'c2' does not match any stored properties}}
    // expected-note@-2 {{CodingKey case 'c2' does not match any stored properties}}
  }
}

// Codable enum with non-decoded parameter (which has no default value).
enum E5 : Codable {
// expected-error@-1 {{type 'E5' does not conform to protocol 'Decodable'}}

  case x(
      a: String = "",
      b: Int,
      // expected-note@-1 {{cannot automatically synthesize 'Decodable' because 'b' does not have a matching CodingKey and does not have a default value}}
      c: Double?)

  enum XCodingKeys : String, CodingKey {
    case a
    case c
  }
}

struct NotCodable {}
enum E6 {
  case x(
    a: NotCodable = NotCodable())
    // expected-note@-1 {{cannot automatically synthesize 'Encodable' because 'NotCodable' does not conform to 'Encodable'}}
    // expected-note@-2 {{cannot automatically synthesize 'Decodable' because 'NotCodable' does not conform to 'Decodable'}}
}
extension E6: Codable {}
// expected-error@-1 {{type 'E6' does not conform to protocol 'Encodable'}}
// expected-error@-2 {{type 'E6' does not conform to protocol 'Decodable'}}