Skip to content

Instantly share code, notes, and snippets.

View gamako's full-sized avatar

SUGAMA Tatsuo gamako

  • SST Inc.
  • Japan
View GitHub Profile
@gamako
gamako / AppDelegate.swift
Last active March 30, 2020 09:57
Xcode11.4でビルドすると32bit iPhoneでクラッシュするサンプルコード
import UIKit
protocol P {
init()
}
struct AAA : P {
}
struct BBB<T: P> {
let a : Int = 0