Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compiler warnings for opaque return types do not explain the problem fully, making it hard to understand #80226

Open
bolsinga opened this issue Mar 22, 2025 · 3 comments
Labels
bug A deviation from expected or documented behavior. Also: expected but undesirable behavior. triage needed This issue needs more specific labels

Comments

@bolsinga
Copy link

bolsinga commented Mar 22, 2025

Description

I'm trying to write code that should return a sequence of values, based upon a condition. The return types are the same. The funnel function cannot return one of the two separate functions conditionally without a compiler error.

Reproduction

func typeA() -> some AsyncSequence<Int, Never> {
  let (stream, continuation) = AsyncStream<Int>.makeStream()
  Task.detached {
    defer { continuation.finish() }
    for taggedDB in 0..<3 {
      continuation.yield(taggedDB)
    }
  }
  
  return stream
}

func typeB() -> some AsyncSequence<Int, Never> {
  let (stream, continuation) = AsyncStream<Int>.makeStream()
  Task.detached {
    defer { continuation.finish() }
    for taggedDB in 0..<4 {
      continuation.yield(taggedDB)
    }
  }
  return stream
}

// The compiler points to this function declaration with the error message:
// Function declares an opaque return type 'some AsyncSequence<Int, Never>', but the return statements in its body do not have matching underlying types
func type() -> some AsyncSequence<Int, Never> {
  if Int.random(in: 0...10) % 2 != 0 {
    return typeA() // Error here is: Return statement has underlying type 'some AsyncSequence<Int, Never>'
  } else {
    return typeB() // Error here is: Return statement has underlying type 'some AsyncSequence<Int, Never>'
  }
}

Expected behavior

I expect this to be able to compile, but it's quite likely I'm not understanding something correctly.

Environment

swift-driver version: 1.115.1 Apple Swift version 6.0.3 (swiftlang-6.0.3.1.10 clang-1600.0.30.1)
Target: arm64-apple-macosx15.0

Additional information

I know the functions typeA and typeB are similar, but in my real world case, their implementations are quite different. So generalizing those would not really apply for me. This example is just the first simplified version of the problem I was able to get to. Thanks.

@bolsinga bolsinga added bug A deviation from expected or documented behavior. Also: expected but undesirable behavior. triage needed This issue needs more specific labels labels Mar 22, 2025
@AnupamKumar-1
Copy link

The error occurs because when you use an opaque return type (using some AsyncSequence<Int, Never>), the compiler requires that every return statement has the exact same underlying type. Even though both typeA() and typeB() return an AsyncSequence with the same element and failure types, their concrete types are different. Swift’s opaque type mechanism doesn’t allow two different types to be returned from a function—even if they conform to the same protocol.

@bolsinga
Copy link
Author

Thank you, @AnupamKumar-1!

I suppose this issue is now about how the compiler warnings given do not explain the actual problem in an actionable manner.

@bolsinga bolsinga changed the title Two functions with the same some AsyncSequence return value are not the same? Compiler warnings for opaque return types do not explain the problem properly, making it hard to understand Mar 22, 2025
@bolsinga bolsinga changed the title Compiler warnings for opaque return types do not explain the problem properly, making it hard to understand Compiler warnings for opaque return types do not explain the problem fully, making it hard to understand Mar 23, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug A deviation from expected or documented behavior. Also: expected but undesirable behavior. triage needed This issue needs more specific labels
Projects
None yet
Development

No branches or pull requests

3 participants
@bolsinga @AnupamKumar-1 and others